Happy Endpoint

brands list

Return list of brands listed on Sephora.com

GET
/brands-list

Authorization

RapidApiKey
X-RapidAPI-Key<token>

In: header

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/brands-list"
{
  "success": true,
  "data": {
    "success": true,
    "data": {
      "brands": [
        {
          "brandId": "6801",
          "shortName": "AAVRANI",
          "targetUrl": "/brand/aavrani"
        },
        {
          "brandId": "6485",
          "shortName": "ABBOTT",
          "targetUrl": "/brand/abbott"
        }
      ]
    }
  }
}
{
  "success": false,
  "message": "Invalid payload provided. Please ensure: 1) 'Content-Type: application/json' is included in your request headers 2) Request body contains valid JSON data.",
  "error": {
    "issues": [
      {
        "code": "too_small",
        "minimum": 1,
        "type": "array",
        "inclusive": true,
        "exact": false,
        "message": "Array must contain at least 1 element(s)",
        "path": [
          "urls"
        ]
      }
    ],
    "name": "ZodError"
  }
}
{
  "success": false,
  "message": "Internal server error"
}