-
-
Notifications
You must be signed in to change notification settings - Fork 60
Description
Is there an existing issue for this?
- I have searched the existing issues
Is your feature request related to a problem? Please describe the problem.
It would be very helpful to have team/constructor colors included in the API responses,
particularly in the Constructor objects and driver standings endpoints.
Use Case
Currently, when building F1 applications, developers need to maintain local data files
with team colors to display driver/team information with proper branding. Including
colors in the API would eliminate this need and ensure consistency across applications.
Describe the solution you'd like
Add a color or teamColor field to the Constructor object:
{
"constructorId": "red_bull",
"name": "Red Bull",
"nationality": "Austrian",
"url": "...",
"color": "#3671C6", // or "teamColor"
"colorSecondary": "#FF0000" // optional secondary color
}Will this require a new data source?
After researching potential automated sources, I haven't found a reliable API or data feed that provides official F1 team colors that could be automatically ingested.
Proposed approach:
A community-maintained JSON file in the repository (similar to how some projects handle supplementary data like country codes or icons).
I'm currently maintaining this data locally for my own app and would be happy to contribute it as a starting point. The data could be updated via PRs as teams rebrand or new teams join.