Skip to main content

List Brands

GET /brands
Retrieves a list of all brands.

Response

{
  "data": [
    {
      "id": "string",
      "name": "string"
    }
  ]
}

Get Brand

GET /brands/{id}
Retrieves a specific brand by ID.

Parameters

  • id (path) - Brand ID

Response

{
  "id": "string",
  "name": "string"
}