Get grid rows
Grids
Get grid rows
Export the full row contents of a grid - canonical, custom, and formula/calculated columns.
GET
Get grid rows
Returns the row contents of a grid, including canonical columns, user-added custom columns, and formula or calculated columns. This is the programmatic counterpart of the in-app Export action. Use this endpoint when you want to pull a user-built workspace - with its column set and computed columns - into an ERP, BI tool, or warehouse on a schedule.Documentation Index
Fetch the complete documentation index at: https://docs.retailgrid.io/llms.txt
Use this file to discover all available pages before exploring further.
Authentication
Bearer token. See Authentication.Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
grid_id | string | Yes | The grid to export. Discover IDs via List grids. |
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
limit | integer | No | Page size, default 1000, max 10000. |
cursor | string | No | Opaque pagination cursor returned by a previous response. |
columns | string | No | Comma-separated list of column names to include. Defaults to every column in the grid. |
updated_after | string (ISO-8601, UTC) | No | Only return rows updated at or after this timestamp. |
Response
Large grids
For grids above ~50k rows, page withlimit=5000 and follow next_cursor until it returns null. Pulling the entire grid in one call is supported up to the limit ceiling but is slower than chunked pulls and more likely to hit a retry on transient failures.
If you only need a subset of columns, pass columns= - the response is smaller and the export is faster.
