latestOpenAPI 3.0.32026-08-1931011.5 KB
4e64b163cbe4
Brands
List available brands
Retrieve a paginated list of brands in your network along with their payout details and tracking links. Brands where supports_deeplinking is true let you deep-link to a specific page by appending a url param to tracking_url.
get/v1/brands
Query parameters
pageinteger
Page number for pagination. Defaults to 1.
limitinteger
Number of brands per page (max 100). Defaults to 25.
searchstring
Filter brands by name.
Response
A paginated list of brands.
Example response
{
"data": [
{
"id": "example-store",
"name": "Example Store",
"domain": "example-store.com",
"category": "Retail",
"geo": "US",
"description": "Example Store sells quality goods at great prices.",
"logo_url": "https://cdn.sanity.io/images/project/dataset/example-logo.png",
"payout": "5%",
"tracking_url": "https://sales.cashbackhive.com/go/example-store?publisherId=pub_a1b2c3d4",
"supports_deeplinking": true
}
],
"page": 1,
"total": 42
}