Get records
GET/api/v1/orgs/:orgID/datasets/:datasetID/records
Retrieve records from a dataset with optional time window filtering and sort direction.
Filtering:
- Use
createdAfter/createdBeforeto filter by creation time window - Use
updatedAfter/updatedBeforeto filter by update time window - Created and updated filters are mutually exclusive groups
Sort direction:
- Use
sortDirectionto control ordering (ascordesc, defaultasc)
Pagination:
- Results are paginated with a default limit of 100 records
- Maximum limit is 1000 records per request
- The response includes an opaque
cursorin metadata for fetching the next page - Pass the
cursorvalue as-is to retrieve the next page; do not combine with time filters or sortDirection
Response formats:
json(default) returns structured records with pagination metadatacsvreturns a downloadable CSV with column headers for configured dataset fields
Request
Responses
- 200
- 400
- 401
- 500
Records retrieved successfully (JSON response)
Bad request - Invalid parameters
Unauthorized
Internal server error