Search and filter within dataset
Datastore search
This API allows you to search for data within a dataset or scan through the rows of the dataset in a paginated manner.
Search Rows in Dataset
ID or alias of the resource to be searched against. This corresponds to the dataset_id (resource_id is a legacy reference)
Maximum number of rows to return (optional, default: 100)
100Offset this number of rows (optional)
Fields to return (optional, default: all fields in original order)
Dictionary of matching conditions, e.g {"key1": "a", "key2": "b"}
Full text query. If it’s a string, it’ll search on all fields on each row. If it’s a dictionary as {“key1”: “a”, “key2”: “b”}, it’ll search on each specific field. This is recommended rather than searching the full table as the latter will slow down queries significantly.
Comma-separated field names with ordering, eg.: "fieldname1, fieldname2 desc"
Fetched data
Rate limit exceeded
Error information
Last updated
Was this helpful?