Skip to content
On this page

Fetch Brands ​

Retrieve a list of brands from your store.

Endpoint ​

GET /api/brands/search

Query Parameters ​

NameTypeDescription
pageintPage number (optional)
limitintItems per page (optional)
searchstringSearch by name or slug

Response ​

json
{
 
  "results": [
    {
      "_id": "string",
      "storeId": "string",
      "name": "string",
      "slug": "string",
      "imageSrc": "string",
      "description": "string"
    }
  ],
  "paginate": {
        "total": 1,
        "per_page": 20,
        "current_page": 1,
        "last_page": 1
    }
}

Released under the MIT License.