Quickstart
Make your first conversation export request.
Choose an API
Pull data from Rilla with the Data Export API, or send appointments and recordings into Rilla with the Custom CRM API. This quickstart uses data export.
Get an API key
Admins and Team Managers can create API keys in the Rilla web app. Open Settings → Developer, then select Create API key in the API keys tab.
Choose the team access your integration needs. Admins can select organization-wide access or specific teams; Team Managers are limited to teams they manage. Create the key, then copy and store it securely—it is shown only once.
If you don’t have access to create keys, ask your organization’s admin or your Rilla account manager for one.
Make your first request
Replace the sample dates with a day when your organization has recordings.
curl --request POST \
--url 'https://customer.rillavoice.com/export/conversations' \
--header 'Authorization: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"fromDate": "2026-09-01T00:00:00Z",
"toDate": "2026-09-02T00:00:00Z",
"page": 1,
"limit": 50
}'A successful response includes currentPage, totalPages, and arrays for conversations, awaitingUpload, and errored. An empty array can be a valid result.