List Brands

GET /v1/brands

List all brands that are associated with your account.

Query parameters

  • page integer

    Page Number

    Minimum value is 1. Default value is 1.

  • pageSize integer

    Page Size

    Default value is 10.

  • name string

    Filter brand on name

  • id string

    Filter brand on id

Responses

GET /v1/brands
curl \
 -X GET https://ma-api.maddenanalytics.com/v1/brands \
 -H "Authorization: $API_KEY"
Response examples (200)
[
  {
    "id": 1,
    "name": "Acme",
    "synonyms": [
      "string"
    ]
  }
]
Response examples (default)
{
  "error": "Error Type (if any)",
  "message": "Message describing the error",
  "statusCode": 400
}