getMerchants(categoryId:) to list its merchants. Requires LIST_OFFERS scope.
Returns
[MerchantCategory!]! — MerchantCategory is a curated shopping category (e.g. Dining, Travel) that groups merchants.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Get the merchant categories.
getMerchants(categoryId:) to list its merchants. Requires LIST_OFFERS scope.
query {
getMerchantCategories: [MerchantCategory!]!
}
[MerchantCategory!]! — MerchantCategory is a curated shopping category (e.g. Dining, Travel) that groups merchants.
query GetMerchantCategories {
getMerchantCategories {
categoryId
name
}
}
{
"data": {
"getMerchantCategories": [
{ "categoryId": "223e4567-e89b-12d3-a456-426614174001", "name": "Dining" },
{ "categoryId": "323e4567-e89b-12d3-a456-426614174002", "name": "Travel" }
]
}
}