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

url = "https://clientapi.retailgrid.io/v1/products"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://clientapi.retailgrid.io/v1/products', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://clientapi.retailgrid.io/v1/products",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://clientapi.retailgrid.io/v1/products"

req, _ := http.NewRequest("GET", url, nil)

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://clientapi.retailgrid.io/v1/products")
.asString();
require 'uri'
require 'net/http'

url = URI("https://clientapi.retailgrid.io/v1/products")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
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"