Python
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)
200
Example
{ "items": [ { "id": "<string>", "name": "<string>", "logo_url": "<string>", "description": "<string>", "best_commission_rate": 0 } ], "paging_token": "<string>"}
Lists all brands, sorted alphabetically. Supports infinite scrolling with the paging_token parameter.
Max results (1-100)
1 <= x <= 100
Pagination cursor
Successful Response
List of brands
Show child attributes
Cursor to fetch the next page of results. Null if no more results.
Was this page helpful?