Skip to main content
GET
/
v1
/
brands
Python
import os
from channel3_sdk import Channel3

client = Channel3(
    api_key=os.environ.get("CHANNEL3_API_KEY"),  # This is the default and can be omitted
)
page = client.brands.list()
page = page.items[0]
print(page.id)
{
  "items": [
    {
      "id": "<string>",
      "name": "<string>",
      "logo_url": "<string>",
      "description": "<string>",
      "best_commission_rate": 0
    }
  ],
  "next_cursor": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.trychannel3.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Query Parameters

limit
integer
default:20

Max items per page (1-100).

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

Pagination cursor returned by a prior call. Omit for the first page.

Response

Successful Response

items
Brand · object[]
required

List of brands

next_cursor
string | null

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