Skip to main content
GET
/
v1
/
products
List products
curl --request GET \
  --url https://clientapi.retailgrid.io/v1/products

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.

Returns the product catalog visible to your API key. Each record includes canonical product fields plus a custom map of any custom columns that were added when products were imported. This is the read-side counterpart of Bulk upsert products. Use it for ERP / BI ingestion where you need the current enriched state of the catalog.

Authentication

Bearer token. See Authentication.

Query parameters

NameTypeRequiredDescription
limitintegerNoPage size, default 100, max 1000.
cursorstringNoOpaque pagination cursor returned by a previous response.
product_idstringNoFilter to a single canonical product ID.
skustringNoFilter to a single SKU.
updated_afterstring (ISO-8601, UTC)NoOnly return products updated at or after this timestamp.

Response

{
  "data": [
    {
      "product_id": "SKU-12345",
      "sku": "SKU-12345",
      "name": "Whole Milk 1L",
      "brand": "Arla",
      "category": "Dairy",
      "price": "1.49",
      "unit_cost": "0.92",
      "image_url": "https://cdn.example.com/sku-12345.jpg",
      "product_url": "https://www.example.com/products/sku-12345",
      "created_at": "2026-01-04T11:08:00Z",
      "updated_at": "2026-05-21T08:14:21Z",
      "custom": {
        "role": "KVI",
        "buyer": "E. Kirilov"
      }
    }
  ],
  "next_cursor": "eyJvZmZzZXQiOjEwMH0="
}
The custom map contains every custom column attached to the product during import - the keys are the column names you defined. Numeric values are returned as strings - see Conventions.

Example request

curl -s "https://clientapi.retailgrid.io/v1/products?updated_after=2026-05-01T00:00:00Z&limit=500" \
  -H "Authorization: Bearer rg_live_xxx"