API endpoint for viewing basic bicycle tyre information.
Public access - no authentication required.
Responses are cached for 5 minutes.

GET /api/v1/tyres/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

[
    {
        "id": 1,
        "image_url": "https://robbiefallcycles.cc/media/bikes/tyres/tub.jpg",
        "images": "https://robbiefallcycles.cc/media/bikes/tyres/tub.jpg",
        "description": "Tubular tyres made by Viitoria - mid range - good spec",
        "width": "23mm",
        "colour": "Black",
        "brand_name": "Viitoria",
        "model_name": "Rubino Pro IV G2.0 R",
        "weight_grams": 285,
        "tread_pattern": "road style",
        "puncture_resistance": "good"
    },
    {
        "id": 2,
        "image_url": "https://robbiefallcycles.cc/media/bikes/tyres/rubo_pro.jpg",
        "images": "https://robbiefallcycles.cc/media/bikes/tyres/rubo_pro.jpg",
        "description": "clincher tyres - 25mm",
        "width": "25mm",
        "colour": "Black",
        "brand_name": "Rubino",
        "model_name": "Rubino Pro IV 700x25c",
        "weight_grams": 250,
        "tread_pattern": "road style",
        "puncture_resistance": "good"
    },
    {
        "id": 3,
        "image_url": "https://robbiefallcycles.cc/media/bikes/tyres/terra_trail.webp",
        "images": "https://robbiefallcycles.cc/media/bikes/tyres/terra_trail.webp",
        "description": "40mm gravel tyres",
        "width": "40mm",
        "colour": "Black",
        "brand_name": "Continental",
        "model_name": "Terra trail",
        "weight_grams": 445,
        "tread_pattern": "grevel - jaged",
        "puncture_resistance": "high"
    },
    {
        "id": 4,
        "image_url": null,
        "images": null,
        "description": "cheap tyre ideal for fixed gear as cheap to replace as skids burn through tyres",
        "width": "25/28",
        "colour": "Black",
        "brand_name": "Michelin",
        "model_name": "Dynamic Sport",
        "weight_grams": 290,
        "tread_pattern": "mixed",
        "puncture_resistance": "brilliant"
    },
    {
        "id": 5,
        "image_url": null,
        "images": null,
        "description": "Not applicable for turbo trainers",
        "width": "0",
        "colour": "Black",
        "brand_name": "N/A",
        "model_name": "Not Applicable",
        "weight_grams": 250,
        "tread_pattern": "road",
        "puncture_resistance": ""
    },
    {
        "id": 6,
        "image_url": "https://robbiefallcycles.cc/media/bikes/tyres/Conti_GP_5000_TR.jpg",
        "images": "https://robbiefallcycles.cc/media/bikes/tyres/Conti_GP_5000_TR.jpg",
        "description": "No description available.",
        "width": "28mm",
        "colour": "Black",
        "brand_name": "Continental",
        "model_name": "Continental Grand Prix 5000S T",
        "weight_grams": 288,
        "tread_pattern": "road",
        "puncture_resistance": "mid"
    }
]