Skip to main content
Fetch all gift card products (brands) available in a specific country. Use the ISO 3166-1 alpha-2 country code from List Countries.

Usage

curl https://api.payvessel.com/api/v1/gift-cards/US/products \
  -H "api-key: YOUR_API_KEY" \
  -H "api-secret: YOUR_SECRET_KEY"

Path parameters

ParameterTypeRequiredDescription
country_codestringYesISO 3166-1 alpha-2 code (e.g. US, GB, NG)

Response fields

Each product includes:
FieldTypeDescription
idstringProduct/operator ID (used to fetch denominations and create orders)
namestringBrand name (e.g. “Amazon”, “iTunes”, “Steam”)
brandIdstring or nullBrand identifier
productTypeobject or nullProduct type with id and name fields
currencystring or nullProduct currency
imagestring or nullBrand logo URL

Next step

Use the product id as the operator_id to get denominations.

API Reference

Full request/response details and Try it