List products
curl --request GET \
--url https://api.example.com/api/v1/developer/productsimport 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_bodyProducts
List products
List voucher product designs configured in your tenant.
GET
/
api
/
v1
/
developer
/
products
List products
curl --request GET \
--url https://api.example.com/api/v1/developer/productsimport 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_bodyRequired scope:
Page shape (deprecated):
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 forcesORDER BY created_at DESC, id DESC and ignores the legacy sort_order
column on the underlying table.
Query parameters
Cursor shape (recommended)
| Parameter | Type | Default | Notes |
|---|---|---|---|
cursor | string | – | Opaque cursor from a previous response’s next_cursor |
limit | integer | 20 | 1–100 |
Page shape (deprecated)
Use cursor pagination for new integrations – see Pagination.
| Parameter | Type | Default | Notes |
|---|---|---|---|
page | integer | 1 | 1-indexed |
per_page | integer | 20 | 1–100 |
Filters (both shapes)
| Parameter | Type | Default | Notes |
|---|---|---|---|
status | string | – | One 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…"
}
{
"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), infixed_amount.range– price betweenmin_amountandmax_amount.custom– price entered by the buyer (no preset bounds).
Errors
400– Invalidstatusvalue, or invalid/forged/cross-tenantcursor.
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();