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
| Field | Type | Description |
|---|---|---|
id | long | Unique tire make identifier |
name | string | Make name (e.g. "Michelin") |
image_url | string? | URL to the make's logo/brand image |
dot_reg_url | string? | URL to DOT registration information |
Error Responses
| Status | Condition |
|---|---|
401 | Missing or invalid API key |
Related Endpoints
- Tire Patterns — use
idas themake_idparameter to list patterns for a make - Tires — use
nameas themake_namefilter in catalog endpoints - Rebates — filter rebates by
make_nameon the list endpoint
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.