Skip to main content
GET
/
v1
/
brands
/
search
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
)
search_brands_response = client.brands.search(
    query="x",
)
print(search_brands_response.brands)
{
  "brands": [
    {
      "id": "<string>",
      "name": "<string>",
      "logo_url": "<string>",
      "description": "<string>",
      "best_commission_rate": 0
    }
  ]
}

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

query
string
required

Free-text query (e.g. 'Nike', 'lululemon').

Required string length: 1 - 200
limit
integer
default:5

Maximum number of brands to return.

Required range: 1 <= x <= 20

Response

Successful Response

brands
Brand · object[]
required

Brands matching the query, ordered by relevance.