Quickstart
By the end of this page you will have created a credential, made an authenticated request, and received one signed webhook.
1. Create an API key
Section titled “1. Create an API key”In the Talki dashboard, go to Impostazioni → Integrazioni → API and create a key. You will see the secret once. Talki stores only a hash of it and cannot show it to you again — if you lose it, revoke it and create another.
Keys are prefixed so they are recognisable in a log or a paste:
talki_live_… productiontalki_test_… test mode2. Make a request
Section titled “2. Make a request”curl https://api.talki.it/v1/calls \ -H "Authorization: Bearer $TALKI_API_KEY" \ -H "Talki-Version: 2026-10-01"3. Receive a webhook
Section titled “3. Receive a webhook”4. Verify the signature
Section titled “4. Verify the signature”Never trust an unverified payload. See Webhooks for the signing scheme and cross-language examples.
