Get all Brands

Get all Brands

GET https://api.moltin.com/v2/brands

Query Parameters

NameTypeDescription

filter

string

Filter attributes

include

string

brands, products

Headers

NameTypeDescription

Authorization

string

The Bearer token to grant access to the API

{
  "data": [
    {
      "id": "c46e07d2-23ef-4b3b-8437-7bcdbf38bc4c",
      "type": "brand",
      "status": "live",
      "name": "I Love Lamp",
      "slug": "i-love-lamp",
      "description": "A lamp brand.",
      "meta": {
        "timestamps": {
          "created_at": "2018-04-05T08:48:39+00:00",
          "updated_at": "2018-04-23T11:09:30+00:00"
        }
      },
      "relationships": {}
    }
  ],
  "links": {
    "current":
      "https://api.moltin.com/v2/brands?page[limit]=100&page[offset]=0",
    "first": "https://api.moltin.com/v2/brands?page[limit]=100&page[offset]=0",
    "last": null
  },
  "meta": {
    "page": {
      "limit": 100,
      "offset": 0,
      "current": 1,
      "total": 1
    },
    "results": {
      "total": 1
    }
  }
}

You can use pagination with this resource. See: Settings for details.

curl -X GET https://api.moltin.com/v2/brands \
     -H "Authorization: Bearer XXXX"

Last updated