List Brands
GET
/api/1.01/brand
Retrieves a list of available brands with filtering and pagination options.
Optional Parameters
Parameter | Type | Required | Default | Description |
---|---|---|---|---|
slug | String | No | - | Filter by slug |
category | String | No | - | Filter by category |
redeemType | String | No | - | Filter by redeem type |
currency | String | No | - | Filter by currency |
limit | String | No | - | Number of results per page |
page | Integer | No | - | 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 name | Field type | Field description |
---|---|---|
data | Array | Array of all results |
slug | String | Slug of product or brand |
category | String | Category of brand |
redeemType | String | Redeem type of brand |
brandName | String | Name of brand |
options | Array | Items sold by brand |
redeemValue | String | The region of the option |
products | Array | List of products belonging to the brand |
name | String | Name of the product |
faceValueAmount | Decimal | The amount received when redeeming the product |
faceValueCurrency | String | The currency of the faceValueAmount |
isStocked | Boolean | Whether 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
- Brands are sorted by