List of Tires

List of all possible tires presented in our database.
Similar to List of Bolt Patterns but for tires.

Screenshot source: wheel-size.com/tire/

count field shows how many models have this tire which allows you to create tag cloud or sort tires by popularity.
tire field should be used as tire query or path paremeter where it is needed.

GET /v1/tires/ HTTPS/1.1
Host: api.wheel-size.com

[
    {
        "tire": "75/195R14",
        "width": 75,
        "aspect_ratio": 195,
        "rim_diameter": 14,
        "count": 1
    },
    {
        "tire": "135/80R12",
        "width": 135,
        "aspect_ratio": 80,
        "rim_diameter": 12,
        "count": 20
    },
    {
        "tire": "135/80R13",
        "width": 135,
        "aspect_ratio": 80,
        "rim_diameter": 13,
        "count": 22
    },
    ...
]