Skip to main content
GET
/
api
/
brands
/
{brand_uuid}
/
models
Get Models for Brand
curl --request GET \
  --url https://api.example.com/api/brands/{brand_uuid}/models \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "message": "Models for brand fetched successfully.",
  "data": [
    {
      "uuid": "f6a7b8c9-d0e1-2345-fabc-678901234567",
      "name": "Neverfull MM"
    },
    {
      "uuid": "a7b8c9d0-e1f2-3456-abcd-789012345678",
      "name": "Neverfull GM"
    },
    {
      "uuid": "b8c9d0e1-f2a3-4567-bcde-890123456789",
      "name": "Speedy 30"
    }
  ]
}

Authorizations

x-api-key
string
header
required

API key for application authentication (format: leo_xxxxxxxxx)

Path Parameters

brand_uuid
string<uuid>
required

Response

200 - application/json

Models retrieved successfully

The response is of type any.