Metadata
Fixture-level metadata such as team kit and participant colors.
include=metadata
The metadata include attaches an array of fixture-level metadata entries to each fixture. The entries follow the same shape as other "type" based includes (statistics, metrics, trends) so they can be consumed with the same client-side logic.
Availability: Only returned when
include=metadatais added to a request toGET /fixturesorGET /fixtures/search. When not requested, the field is omitted entirely.
Scope: Currently only kit / participant colors (
PARTICIPANT_COLORS) and formations (FORMATION) are returned. Other raw metadata stored against a fixture (e.g. neutral venue, kickoff side, attendance) is not yet exposed via this include.
Object Schema
| Field | Type | Description |
|---|---|---|
team_id | integer | The team this entry belongs to. |
type_id | integer | The external type ID. 348 = PARTICIPANT_COLORS, 349 = FORMATION. |
developer_name | string | The constant-style identifier for the metadata type. |
value | integer | Always null for PARTICIPANT_COLORS and FORMATION. Present for template consistency with other type-based includes (see meta on Metrics). |
meta | object | Context-specific payload. For PARTICIPANT_COLORS, contains kit and participant; for FORMATION, contains formation. See below. |
meta for PARTICIPANT_COLORS
meta for PARTICIPANT_COLORS| Field | Type | Description |
|---|---|---|
kit | string | Comma-separated list of hex colors describing the team's kit (shirt, shorts, socks, sleeves, etc.). |
participant | string | The primary/representative hex color for this team, used for charts, badges, and UI accents. |
meta for FORMATION
meta for FORMATION| Field | Type | Description |
|---|---|---|
formation | string | The team's formation for this fixture, e.g. "3-4-2-1". |
Available Types
type_id | developer_name | developer_type | Description |
|---|---|---|---|
348 | PARTICIPANT_COLORS | match_info | Home/away kit and participant colors for the fixture. One entry per team. |
349 | FORMATION | match_info | Home/away formation for the fixture. One entry per team. |
Request Examples
Fixture with kit colors:
GET /fixtures?fixture_id=19609153&include=metadata
Combine with participants and statistics:
GET /fixtures?fixture_id=19609153&include=metadata,statistics
Search results with kit colors:
GET /fixtures/search?window=24&include=metadata
Example Response
"participants": [
{ "id": 85, "name": "Team A", "position": 3, "location": "home" },
{ "id": 102, "name": "Team B", "position": 11, "location": "away" }
],
"metadata": [
{
"team_id": 85,
"type_id": 348,
"developer_name": "PARTICIPANT_COLORS",
"value": null,
"meta": {
"kit": "#D6003D,#D6003D,#D6003D,#D6003D,#C40010,#0046A8,#C40010,#D6003D,#0A0A0A,#0A0A0A,#F0F0F0",
"participant": "#C40010"
}
},
{
"team_id": 102,
"type_id": 348,
"developer_name": "PARTICIPANT_COLORS",
"value": null,
"meta": {
"kit": "#F0F0F0,#F0F0F0,#F0F0F0,#F0F0F0,#C40010,#0046A8,#F0F0F0,#679FEA,#C40010,#679FEA,#679FEA",
"participant": "#F0F0F0"
}
},
{
"team_id": 85,
"type_id": 349,
"developer_name": "FORMATION",
"value": null,
"meta": {
"formation": "3-4-2-1"
}
},
{
"team_id": 102,
"type_id": 349,
"developer_name": "FORMATION",
"value": null,
"meta": {
"formation": "4-3-3"
}
}
]Match team_id against participants[].id to determine which entry belongs to the home or away team.
Real-World Use Cases
Match center theming
Use participant to color team badges, score bugs, and momentum bars to match each team's primary color.
Kit preview
Use kit to render a simple jersey graphic (shirt/shorts/socks/sleeves) for each team ahead of kickoff.
Lineup / formation display
Use formation to render each team's formation (e.g. on a pitch graphic) ahead of or during a match.