Skip to main content
GET
List Available Datasets
Return the catalogue of dataset keys available to the authenticated organization. This is the discovery step for Query datasets: without it, the keys are not enumerable from the API at all. The response is two halves concatenated. First the native datasets, defined in code and identical for every organization. Then the organization’s own custom (elastic) datasets, keyed as elastic:<uuid>.

Request

Headers

string
required
Your API key for authenticationExample: sk_live_1234567890abcdef
string
required
Your organization UUIDExample: a8315ef3-dd50-43f8-b7ce-d839e68d51fa

Response

A bare JSON array, not paginated.
string
Stable dataset key. Pass it to the query and schema endpoints. Custom datasets carry the elastic: prefix.
string
For native datasets, an i18n key such as datasets.own_workforce_contracts.label — translate it against your locale bundle.For custom datasets this is not an i18n key: it is the literal name a user typed. Do not run it through translation.
string
kpi, activity, master (native master-data tables such as facilities and vehicles), custom (a user-created elastic dataset) or custom_kpi (a custom-KPI group, one column per KPI)
The native half is not filtered by permissions, feature flags or data volume. Every organization sees the same native keys, including ones it has no rows for. A key appearing here does not mean the organization has data behind it — query it and read the result. Only the custom half is organization-specific.

Own workforce datasets

Seven of the native keys cover the social pillar, and they are the cheap way to get aggregates that the Own Workforce API would otherwise make you compute client-side:

Example

Successful Response

Common Errors

401 Unauthorized

Cause: the key is invalid, or it does not belong to the organization in x-organization-id — the two are looked up as a pair. A request carrying no credentials at all answers AUTH_REQUIRED instead.

400 Bad Request

Cause: x-organization-id absent while authenticating with an API key.

Get dataset schema

The dimensions and metrics of one key

Query datasets

Aggregate a dataset