Skip to main content
GET
/
v1
/
brands
List Brands
curl --request GET \
  --url https://api.urldna.io/v1/brands \
  --header 'Authorization: <api-key>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "private_brand": true
  }
]

Authorizations

Authorization
string
header
required

Query Parameters

filter
enum<string>

Filter brands by visibility: ALL (all accessible brands), FREE (public brands), PREMIUM (premium-tier brands), USER_BRANDS (user-created brands).

Available options:
ALL,
FREE,
PREMIUM,
USER_BRANDS
query
string

Search term for filtering brands by name (case-insensitive partial match).

page
number
default:1

Page number for pagination (1-indexed). Pages beyond the first require PREMIUM subscription.

Response

Brand list retrieved successfully.

id
string

Unique brand identifier.

name
string

Brand name.

private_brand
boolean

When true, brand is visible only to the creating user.