v1

latestOpenAPI 3.0.3MIT2026-07-22153276289.7 KB
Deprecated End Points

Get list of data point choices

Returns available choices for a specific enum data point.

get/v3/data_point_choices

Query parameters

offsetinteger

The number of documents to skip before starting to collect the result set.

limitinteger
Example:20

The numbers of results to return.

data_pointstring required

Uniquely identify a data point.

Example:XprEvgai

The data point to get choices for.

collectionstring required

Uniquely identify a collection.

Example:mEFayXdO

The collection to get choices for.

searchstring

Filter choices by searching for a substring.

Response

All matching data point choices.

countinteger required

Number of items in results.

nextstring nullable

URL to request next page of results.

previousstring nullable

URL to request previous page of results.

Example response

{
  "count": 10,
  "results": [
    {
      "id": 1,
      "label": "USD",
      "value": "USD"
    }
  ]
}