Skip to main content
GET
/
api
/
v1
/
developer
/
products
List products
curl --request GET \
  --url https://api.example.com/api/v1/developer/products
import requests

url = "https://api.example.com/api/v1/developer/products"

response = requests.get(url)

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

fetch('https://api.example.com/api/v1/developer/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://api.example.com/api/v1/developer/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://api.example.com/api/v1/developer/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://api.example.com/api/v1/developer/products")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.example.com/api/v1/developer/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
Required scope: products:read Rate limit: 300 requests/minute A “product” is a voucher design / SKU configured in the VoucherGrid Design Centre – for example, a $50 Birthday voucher or a Custom Amount voucher.

Pagination

Supports both cursor pagination (recommended) and page pagination (deprecated). The cursor shape wins if both are supplied. Cursor mode forces ORDER BY created_at DESC, id DESC and ignores the legacy sort_order column on the underlying table.

Query parameters

ParameterTypeDefaultNotes
cursorstringOpaque cursor from a previous response’s next_cursor
limitinteger201–100

Page shape (deprecated)

Use cursor pagination for new integrations – see Pagination.
ParameterTypeDefaultNotes
pageinteger11-indexed
per_pageinteger201–100

Filters (both shapes)

ParameterTypeDefaultNotes
statusstringOne of ready, internal, live, archived. internal products are staff-only – they appear in the in-app sale drawer but never on a public storefront.

Response

Cursor shape:
{
  "products": [
    {
      "id": "0e1d2c3b-4a59-6788-9aab-bcdef0123456",
      "name": "birthday-50",
      "display_name": "Birthday Voucher",
      "description": "$50 birthday voucher with festive design",
      "pricing_type": "fixed",
      "fixed_amount": "50.00",
      "min_amount": null,
      "max_amount": null,
      "status": "live",
      "location_id": null,
      "created_at": "2026-04-26T01:23:45Z"
    }
  ],
  "next_cursor": "cur_v1_eyJ2IjoxLCJ0Ijoi…uH8.QwR2…"
}
Page shape (deprecated):
{
  "products": [/* …items… */],
  "total": 4,
  "page": 1,
  "per_page": 20
}
pricing_type is one of:
  • fixed – single set price (shown as Face Value in the Design Centre), in fixed_amount.
  • range – price between min_amount and max_amount.
  • custom – price entered by the buyer (no preset bounds).

Errors

  • 400 – Invalid status value, or invalid/forged/cross-tenant cursor.

Examples

curl \
  -H "X-API-Key: vg_live_EXAMPLEdoNotUseThis123456" \
  "https://api.vouchergrid.com/api/v1/developer/products?status=live"
const res = await fetch(
  "https://api.vouchergrid.com/api/v1/developer/products?status=live",
  { headers: { "X-API-Key": process.env.VOUCHERGRID_API_KEY! } },
);
const data = await res.json();