Skip to main content
GET
/
api
/
analytics
/
datasets
List analytics datasets
curl --request GET \
  --url https://platform.kodexa.ai/api/analytics/datasets \
  --header 'x-api-key: <api-key>'
{
  "datasets": [
    {
      "defaultMetrics": [
        "<string>"
      ],
      "description": "<string>",
      "dimensions": [
        {
          "key": "<string>",
          "label": "<string>",
          "type": "string"
        }
      ],
      "key": "<string>",
      "metrics": [
        {
          "key": "<string>",
          "label": "<string>",
          "type": "number"
        }
      ],
      "name": "<string>",
      "requiresOrganization": true,
      "supportsProjectScope": true,
      "timeFields": [
        {
          "key": "<string>",
          "label": "<string>",
          "type": "string"
        }
      ]
    }
  ]
}

Authorizations

x-api-key
string
header
required

API key for authentication. Create one from the Kodexa platform UI under Settings > Access Tokens.

Response

Analytics dataset catalog

datasets
object[]