Get Data from Dataset (v2)

Queries the specified dataset and returns matching records. Each row in the data array wraps its values under a fields object. The response also includes links for pagination navigation and meta with page number, page size, and total counts.

Use the filter field to supply OData-style expressions (comparison operators eq, ne, lt, le, gt, ge, logical operators and, or, and in). Filter fields do not need to appear in the fields list. Use orderBy to control sort order; sorted fields must also appear in fields. Use "List Datasets (v1.2)" to discover available dataset names and "Get Fields from Dataset (v1.2)" to discover field names.

Note: Compared to "Get Data from Dataset (v1)", this version uses filter and orderBy request fields instead of the legacy filters and sortBy structures, moves pagination inputs to body fields (page, pageSize) instead of query parameters, returns pagination in links / meta objects instead of a legacy pagination object, and returns RFC 7807 compliant error responses.

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…
Path Params
string
required

The machine-readable name of the dataset to query. Use "List Datasets (v1.2)" to discover available names.

Body Params

Request parameters for dataset data retrieval

fields
array of strings
required

List of field names to return. Use "Get Fields from Dataset (v1.2)" to discover available names.

fields*
string | null

OData-style filter expression. Supported operators: eq, ne, lt, le, gt, ge, and, or, in.

string | null

Comma-separated sort rules. Each rule is a field name followed by a direction (asc or desc). Sorted fields must also appear in the fields array.

integer
≥ 1
Defaults to 1

Page number to retrieve (1-indexed). Defaults to 1.

integer
1 to 1000
Defaults to 100

Number of records per page. Defaults to 100. Maximum is 1000.

Responses

401

Unauthorized.

Language
Credentials
:
URL
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json