Competitors
Competitor Details
Get comprehensive details about a specific team or club
GET
Upcoming Games
Overview
To fetch detailed information about a specific competitor (team/club), use the fixtures or results endpoints with the competitor ID. The/stats endpoint may return empty data for some competitors, so using fixtures/results endpoints is more reliable.
Recommended Approach
Step 1: Fetch Competitor Data via Fixtures
competitors array.
Step 2: Fallback to Results if No Fixtures
If the competitor has no upcoming fixtures, use the results endpoint:Parameters
| Parameter | Type | Description |
|---|---|---|
competitors | number | Competitor ID to fetch details for |
showOdds | boolean | Include betting odds (optional) |
timezoneName | string | Timezone for date/time values (auto-resolved, or specify e.g., America/New_York) |
All
startTime fields in game data use ISO 8601 format with a dynamic timezone offset based on the resolved or specified timezone.Request
Response
Thecompetitors array in the response contains competitor details:
Important Notes
-
Always filter by ID: The
competitorsarray may contain additional related teams (opponents). Always filter by the specific competitor ID you’re looking for. - Use fixtures first: Fixtures endpoint is preferred as it includes upcoming matches. Fall back to results if no fixtures are available.
-
Country lookup: Use the
countryIdto look up the country name from the/countriesendpoint or thecountriesarray in the response.
Competitor Fields
| Field | Type | Description |
|---|---|---|
id | number | Unique competitor identifier |
countryId | number | ID of the country the competitor belongs to |
sportId | number | ID of the sport (1 = Football) |
name | string | Full competitor name |
longName | string | Extended official name |
shortName | string | Abbreviated display name |
symbolicName | string | 3-letter code (e.g., “SLO”, “BAR”) |
nameForURL | string | URL-friendly name for SEO |
type | number | Competitor type (1 = club, 2 = national team) |
popularityRank | number | Popularity score (higher = more popular) |
imageVersion | number | Version number for logo assets |
color | string | Primary brand color in hex format |
awayColor | string | Away kit/secondary color in hex format |
mainCompetitionId | number | Primary competition ID |
hasSquad | boolean | Whether squad data is available |
hasTransfers | boolean | Whether transfer data is available |
SEO-Friendly URLs
For SEO purposes, use thenameForURL field to construct URLs:
Related Endpoints
- Competitor Fixtures - Get upcoming matches
- Competitor Results - Get past match results
- Competitor Squad - Get team roster
- Top Competitors - Get popular teams
Last modified on March 15, 2026
Upcoming Games