Skip to main content
Version: 1.01

List Brands

GET /api/1.01/brand

Retrieves a list of available brands with filtering and pagination options.

Optional Parameters

ParameterTypeRequiredDefaultDescription
slugStringNo-Filter by slug
categoryStringNo-Filter by category
redeemTypeStringNo-Filter by redeem type
currencyStringNo-Filter by currency
limitStringNo-Number of results per page
pageIntegerNo-Page number

Example Request

curl -X GET https://connect.relograde.com/api/1.01/brand?slug=netflix \
-H "Authorization: Bearer <token>"

Example Response

{
"data": [
{
"slug": "netflix",
"category": "giftcard",
"redeemType": "currency",
"brandName": "Netflix",
"options": [
{
"redeemValue": "eur",
"products": [
{
"slug": "netflix-eu-eur-25",
"name": "netflix 25 EUR",
"faceValueAmount": 25.0,
"faceValueCurrency": "eur",
"isStocked": true
},
{
"slug": "netflix-eu-eur-50",
"name": "netflix 50 EUR",
"faceValueAmount": 50.0,
"faceValueCurrency": "eur",
"isStocked": true
}
]
}
]
}
]
}

Response Fields

Field nameField typeField description
dataArrayArray of all results
slugStringSlug of product or brand
categoryStringCategory of brand
redeemTypeStringRedeem type of brand
brandNameStringName of brand
optionsArrayItems sold by brand
redeemValueStringThe region of the option
productsArrayList of products belonging to the brand
nameStringName of the product
faceValueAmountDecimalThe amount received when redeeming the product
faceValueCurrencyStringThe currency of the faceValueAmount
isStockedBooleanWhether the product is in stock or not

Notes

note
  • Currency codes follow ISO 4217 standard
  • Price information may have been altered in the documentation
  • Results are sorted by:
    • Brands are sorted by brandName
    • Options are sorted by redeemValue
    • Products are sorted by faceValueAmount