Skip to main content
GET
/
brands
/
api
/
v1
/
public
/
brands
/
{brand_id}
/
catalog
List a brand's products (locator catalog)
curl --request GET \
  --url https://www.closient.com/brands/api/v1/public/brands/{brand_id}/catalog
{
  "brand": {
    "id": "<string>",
    "name": "<string>",
    "website": "",
    "logo_url": "<string>"
  },
  "products": [
    {
      "id": "<string>",
      "name": "<string>"
    }
  ]
}

Documentation Index

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

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

Path Parameters

brand_id
string<shortuuid>
required

Brand short id (22-char shortuuid).

Required string length: 22
Pattern: ^[23456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{22}$

Response

200 - application/json

OK

Top-level payload for the brand catalog endpoint.

brand
BrandSummaryOut · object
required

Identity of the brand whose catalog is being returned.

Example:
{
"id": "2sP1Y9pZ4xQ6rNvHwT3kBe",
"logo_url": "https://cdn.closient.com/brands/acme/logo.png",
"name": "Acme Beverages",
"website": "https://acme.example.com"
}
products
ProductSummaryOut · object[]
required

Products owned by the brand, ordered by display name. Empty list when the brand has no products.