Documentation Index
Fetch the complete documentation index at: https://docs.yativo.com/llms.txt
Use this file to discover all available pages before exploring further.
Returns all purchasable gift card products.
GET https://api.yativo.com/api/v1/giftcards
Filter by ISO 3166-1 alpha-2 country code (e.g. US, BR, NG).
Filter by category ID from GET /giftcards/categories.
curl -X GET 'https://api.yativo.com/api/v1/giftcards?country=US' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
"status": "success",
"status_code": 200,
"message": "Operators retrieved successfully",
"data": [
{
"id": 1,
"name": "Amazon US",
"brand": "Amazon",
"country": "US",
"currency": "USD",
"min_amount": 1,
"max_amount": 500,
"fixed_amounts": [10, 25, 50, 100],
"category": "Shopping"
}
]
}