Tire Makes

List all tire makes (manufacturers) in the catalog. Returns the make ID, name, logo image, and DOT registration URL for each make.

Case-insensitive filtering. Make names are stored in uppercase and are case-insensitive as filter values — for example, make_name=Michelin and make_name=MICHELIN produce the same results.

List Tire Makes

GET /api/v1/tire-makes

Returns all tire makes sorted alphabetically by name. No pagination — the dataset is small enough to return in a single request.

Code Examples

curl -H "x-api-key: tl_live_your_key" \
  "https://app.tireweblibrary.com/api/v1/tire-makes"
const response = await fetch(
  "https://app.tireweblibrary.com/api/v1/tire-makes",
  { headers: { "x-api-key": "tl_live_your_key" } }
);
const makes = await response.json();
import requests

response = requests.get(
    "https://app.tireweblibrary.com/api/v1/tire-makes",
    headers={"x-api-key": "tl_live_your_key"},
)
makes = response.json()

Response

[
  {
    "id": 90,
    "name": "Michelin",
    "image_url": "https://...",
    "dot_reg_url": "https://..."
  },
  {
    "id": 42,
    "name": "Bridgestone",
    "image_url": "https://...",
    "dot_reg_url": null
  }
]

Response Fields

FieldTypeDescription
idlongUnique tire make identifier
namestringMake name (e.g. "Michelin")
image_urlstring?URL to the make's logo/brand image
dot_reg_urlstring?URL to DOT registration information

Error Responses

StatusCondition
401Missing or invalid API key

Related Endpoints


Common Make Names

The catalog contains 650+ makes. The most commonly used makes are:

Common Make Names
MICHELIN
BRIDGESTONE
GOODYEAR
CONTINENTAL
PIRELLI
HANKOOK
KUMHO
NITTO
COOPER
FIRESTONE
Full list: Use GET /api/v1/tire-makes to retrieve all 650+ makes with their IDs, logos, and DOT registration URLs.