Skip to main content
GET
/
v0
/
list-brands
List Brands
import requests

url = "https://api.trychannel3.com/v0/list-brands"

headers = {"x-api-key": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
{
"items": [
{
"id": "<string>",
"name": "<string>",
"logo_url": "<string>",
"description": "<string>",
"best_commission_rate": 0
}
],
"paging_token": "<string>"
}

Authorizations

x-api-key
string
header
required

Query Parameters

limit
integer
default:20

Max results (1-100)

Required range: 1 <= x <= 100
paging_token
string | null

Pagination cursor

Response

Successful Response

items
Brand · object[]
required

List of brands

paging_token
string | null

Cursor to fetch the next page of results. Null if no more results.