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

cursorstring

Use the cursor from a previous next link to continue the export.

limitinteger

How many metric rows to return. The maximum is 100.

Header parameters

X-Shop-Idstring · uuidrequired

The shop whose data you want to read.

Response

A page of emitted metric names and conversation IDs.

nextstring · uri | nullrequired

URL for the next page, or null after the final page.

previousstring · uri | nullrequired

Always null because metric export moves forward through results.

resultsarrayrequired
results.conversation_idstring · uuidrequired

ID of the conversation where the metric was emitted.

results.metric_namestringrequired

Name 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"
    }
  ]
}