NCAAFB & UFL API - Team Colors Added to League Hierarchy
March 30th, 2026
We’ve added Team Colors to the League Hierarchy feed for NCAAF and UFL.
Each team may now include a team_colors collection containing one or more team_color objects, with both HEX and RGB values for primary and secondary colors.
⭐ Benefit
Easily retrieve and display official team branding colors to enhance UI elements such as scoreboards, team pages, and visualizations.
☑️ Sample Requests:
-
League Hierarchy:
https://api.sportradar.com/ncaafb/{access_level}/v7/{language_code}/league/hierarchy.{format}
🔢 Versions
- All versions
🔁 Endpoints Affected
- League Hierarchy
⚙️ Return Samples
<team id="9a6d6f3f-021e-4ddd-8fac-ac4766239d87" name="Buckeyes" market="Ohio State" alias="OSU" founded="1870" mascot="Brutus Buckeye" fight_song="Across the Field, Buckeye Battle Cry" championships_won="9" conference_titles="40" playoff_appearances="7">
<franchise id="9a6d6f3f-021e-4ddd-8fac-ac4766239d87" name="Buckeyes"/>
<venue id="668dcdfb-06dd-4185-911d-d62891ab9143" name="Ohio Stadium" city="Columbus" state="OH" country="USA" zip="43210" address="411 Woody Hayes Drive" capacity="102780" surface="artificial" roof_type="outdoor">
<location lat="40.0022" lng="-83.0197"/>
</venue>
<team_colors>
<team_color type="secondary" hex_color="#666666">
<rgb_color red="102" green="102" blue="102"/>
</team_color>
<team_color type="primary" hex_color="#bb0000">
<rgb_color red="187" green="0" blue="0"/>
</team_color>
</team_colors>
</team>{
"id": "9a6d6f3f-021e-4ddd-8fac-ac4766239d87",
"name": "Buckeyes",
"market": "Ohio State",
"alias": "OSU",
"founded": 1870,
"mascot": "Brutus Buckeye",
"fight_song": "Across the Field, Buckeye Battle Cry",
"championships_won": 9,
"conference_titles": 40,
"playoff_appearances": 7,
"venue": {
"id": "668dcdfb-06dd-4185-911d-d62891ab9143",
"name": "Ohio Stadium",
"city": "Columbus",
"state": "OH",
"country": "USA",
"zip": "43210",
"address": "411 Woody Hayes Drive",
"capacity": 102780,
"surface": "artificial",
"roof_type": "outdoor",
"location": {
"lat": "40.0022",
"lng": "-83.0197"
}
},
"franchise": {
"id": "9a6d6f3f-021e-4ddd-8fac-ac4766239d87",
"name": "Buckeyes"
},
"team_colors": [
{
"type": "secondary",
"hex_color": "#666666",
"rgb_color": {
"red": 102,
"green": 102,
"blue": 102
}
},
{
"type": "primary",
"hex_color": "#bb0000",
"rgb_color": {
"red": 187,
"green": 0,
"blue": 0
}
}
]
}