List transactions
Transactions
List transactions
List sales transactions for downstream ERP and BI ingestion.
GET
List transactions
Returns sales transactions visible to your API key. Pair with List products to assemble a catalog-plus-sales view in your warehouse without going through the in-app CSV export flow.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.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. |
from_date | string (ISO-8601, UTC) | No | Earliest transaction timestamp to include. |
to_date | string (ISO-8601, UTC) | No | Latest transaction timestamp to include. |
product_id | string | No | Filter to a single product. |
store_id | string | No | Filter to a single store. |
updated_after | string (ISO-8601, UTC) | No | Only return transactions updated at or after this timestamp - useful for incremental sync. |
Response
Incremental pulls
For downstream sync jobs, store the highestupdated_at you’ve seen and pass it as updated_after on the next run. This is more efficient than re-reading the full window and lets you catch late-arriving corrections to existing transactions.
Large windows
For wide date ranges across high-volume accounts, narrow the window withfrom_date / to_date and page with limit=10000. Pulling many months in a single call is supported but slow and more likely to hit a retry.
