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

GET /api/v1/wheels/
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

[
    {
        "id": 3,
        "image_url": null,
        "images": null,
        "brand_name": "Unknown Brand",
        "model_name": "Unknown Model",
        "description": "Disc / tri spoke",
        "internal_rim_width": "N/A",
        "external_rim_width": "N/A",
        "spokecount": 4,
        "spoke_material": "Carbon",
        "rimdepth": "N/A",
        "axlesizeF": "N/A",
        "axlesizeR": "N/A",
        "weight_grams": 1650,
        "brake_type": "Rim brake"
    },
    {
        "id": 4,
        "image_url": "https://robbiefallcycles.cc/media/bikes/wheels/HUPCR50.webp",
        "images": "https://robbiefallcycles.cc/media/bikes/wheels/HUPCR50.webp",
        "brand_name": "HUP",
        "model_name": "CR50 'Black Label' 700c Aero Wheelset",
        "description": "50mm deep areo wheels carbon fibre, HUP wheels - kids racing",
        "internal_rim_width": "17",
        "external_rim_width": "25",
        "spokecount": 22,
        "spoke_material": "aluminum",
        "rimdepth": "50",
        "axlesizeF": "100",
        "axlesizeR": "130",
        "weight_grams": 1375,
        "brake_type": "Rim brake"
    },
    {
        "id": 5,
        "image_url": "https://robbiefallcycles.cc/media/bikes/wheels/rapidred900db.jpeg",
        "images": "https://robbiefallcycles.cc/media/bikes/wheels/rapidred900db.jpeg",
        "brand_name": "Fulcrum",
        "model_name": "Rapid Red 900 700c",
        "description": "disc brake aluminum wheels suitable for road and off road riding - Thru Axle",
        "internal_rim_width": "22",
        "external_rim_width": "27.1",
        "spokecount": 28,
        "spoke_material": "Stainless steel",
        "rimdepth": "25",
        "axlesizeF": "100",
        "axlesizeR": "142",
        "weight_grams": 1950,
        "brake_type": "Disc Brake"
    },
    {
        "id": 6,
        "image_url": null,
        "images": null,
        "brand_name": "Unknown Brand",
        "model_name": "Unknown Model",
        "description": "No description available.",
        "internal_rim_width": "N/A",
        "external_rim_width": "N/A",
        "spokecount": 32,
        "spoke_material": "Steel",
        "rimdepth": "N/A",
        "axlesizeF": "N/A",
        "axlesizeR": "N/A",
        "weight_grams": 1000,
        "brake_type": "Rim brake"
    },
    {
        "id": 7,
        "image_url": null,
        "images": null,
        "brand_name": "N/A",
        "model_name": "Not Applicable",
        "description": "Not applicable for turbo trainers",
        "internal_rim_width": "0",
        "external_rim_width": "0",
        "spokecount": 0,
        "spoke_material": "Steel",
        "rimdepth": "0",
        "axlesizeF": "N/A",
        "axlesizeR": "N/A",
        "weight_grams": 1000,
        "brake_type": "Rim brake"
    },
    {
        "id": 8,
        "image_url": "https://robbiefallcycles.cc/media/bikes/wheels/Reynolds_wheels.webp",
        "images": "https://robbiefallcycles.cc/media/bikes/wheels/Reynolds_wheels.webp",
        "brand_name": "Reynolds",
        "model_name": "AR 60 Disc Brake",
        "description": "No description available.",
        "internal_rim_width": "21",
        "external_rim_width": "25",
        "spokecount": 24,
        "spoke_material": "Steel",
        "rimdepth": "60mm",
        "axlesizeF": "12x100",
        "axlesizeR": "12x142",
        "weight_grams": 1640,
        "brake_type": "Disc Brake"
    }
]