Metrics
Export metrics
Export the names of metrics emitted by flows while handling conversations. Each metric name and conversation ID pair appears once.
GET
/v2026-04/metrics/export/Rate limits
- 60 requests/minute per API token and shop. Each page can include up to 100 metric rows.
Usage
Start from this cURL example and add filters as needed.
cURL
curl -X GET https://core.appliedlabs.ai/v2026-04/metrics/export/ \
-H "Authorization: Bearer <api-token>" \
-H "X-Shop-Id: 66e4c4d2-34e8-4f85-8f51-84b6ed7b5f10"Authorizations
Authorizationstringheaderrequired
Send your Applied API key as Authorization: Bearer AL.... Create the key in the Applied dashboard and keep it on your server.
Query parameters
cursorstringUse the cursor from a previous next link to continue the export.
limitintegerHow many metric rows to return. The maximum is 100.
Header parameters
X-Shop-Idstring · uuidrequiredThe shop whose data you want to read.
Response
A page of emitted metric names and conversation IDs.
nextstring · uri | nullrequiredURL for the next page, or null after the final page.
previousstring · uri | nullrequiredAlways null because metric export moves forward through results.
resultsarrayrequiredresults.conversation_idstring · uuidrequiredID of the conversation where the metric was emitted.
results.metric_namestringrequiredName of a metric emitted while handling the conversation.
{
"next": "https://core.appliedlabs.ai/v2026-04/metrics/export/?cursor=next-cursor-token&limit=50",
"previous": null,
"results": [
{
"conversation_id": "55555555-5555-4555-8555-555555555555",
"metric_name": "customer.save"
}
]
}