Release Log
Coverage MatrixDocumentationChange LogLog InContact Us
Release Log

Formula 1 API - Car Number by Profile

We've added a driver's racing number for the current season to their Competitor Profile. Previously only available in each individual race, you may now easily access the current number for a season by driver.

  • info.car_number - Driver's racing number for the current season (ex. 1)

☑️ Sample Request:

Competitor Profile - https://api.sportradar.com/formula1/trial/v2/en/competitors/{competitor_id}/profile.json?api_key=[API_KEY]


🔢 Versions


🔁 Endpoints Affected

Competitor Profile


⚙️ Return Sample

<competitor_profile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" generated_at="2025-03-20T13:39:10+00:00" xmlns="http://schemas.sportradar.com/sportsapi/formula1/v2" xsi:schemaLocation="http://schemas.sportradar.com/sportsapi/formula1/v2 https://schemas.sportradar.com/sportsapi/formula1/v2/schemas/competitor_profile.xsd">
    <competitor id="sr:competitor:178318" name="Verstappen, Max" nationality="Netherlands" country_code="NLD" abbreviation="VER" gender="male"/>
    <teams>
        <team id="sr:competitor:4978" name="Red Bull Racing" nationality="Austria" country_code="AUT" abbreviation="RED" gender="male"/>
    </teams>
    <info first_pole="2019-08-03" first_victory="2016-05-15" debut="2015-03-15" dateofbirth="1997-09-30" first_points="2015-03-29" placeofbirth="Hasselt" placeofbirth_id="sr:city:9066" car_number="1"/>
</competitor_profile>
{
    "generated_at": "2025-03-20T14:11:34+00:00",
    "schema": "https://schemas.sportradar.com/sportsapi/formula1/v2/schemas/competitor_profile.json",
    "competitor": {
        "id": "sr:competitor:178318",
        "name": "Verstappen, Max",
        "nationality": "Netherlands",
        "country_code": "NLD",
        "abbreviation": "VER",
        "gender": "male"
    },
    "teams": [
        {
            "id": "sr:competitor:4978",
            "name": "Red Bull Racing",
            "nationality": "Austria",
            "country_code": "AUT",
            "abbreviation": "RED",
            "gender": "male"
        }
    ],
    "info": {
        "first_pole": "2019-08-03",
        "first_victory": "2016-05-15",
        "debut": "2015-03-15",
        "dateofbirth": "1997-09-30",
        "first_points": "2015-03-29",
        "placeofbirth": "Hasselt",
        "placeofbirth_id": "sr:city:9066",
        "car_number": 1
    }
}