Base URL
https://v2.football.sportsapipro.com
Finding IDs: Get manager, referee, and venue IDs from match details (/api/match/{matchId}). The response includes referee.id, venue.id, and manager data. You can also use /api/match/{matchId}/managers for manager IDs.
Shortcut for current team manager + home venue. GET /api/teams/{teamId} already returns the current manager object (name, shortName, country, id) and venue (name, capacity, city) in one call — no need to chain through match details. See World Cup 2026 — Managers & Venues.
Manager Endpoints
Manager Details
GET /api/managers/{managerId}
Returns manager profile: name, nationality, age, date of birth, current team, and preferred formation.
Numeric manager ID (e.g., 793451). Discover from match details or match managers endpoint.
Manager Image
GET /api/managers/{managerId}/image
Returns the manager’s profile photo URL.
Manager Career
GET /api/managers/{managerId}/career
Returns complete managerial career history: clubs managed, dates, win/loss/draw records, and trophies.
Manager Career History
GET /api/managers/{managerId}/career-history
Returns full career history with teams and detailed performance stats. Provides more granular data than the /career endpoint.
Manager Last Events
GET /api/managers/{managerId}/events/last/{page}
Returns recent matches managed, paginated with results and scores.
Manager Next Events
GET /api/managers/{managerId}/events/next/{page}
Returns upcoming matches for the manager’s current team, paginated.
Referee Endpoints
Referee Details
GET /api/referee/{refereeId}
Returns referee profile: name, nationality, age, and career stats summary.
Numeric referee ID. Discover from match details (/api/match/{matchId}).
Referee Image
GET /api/referee/{refereeId}/image
Returns the referee’s profile photo URL.
Referee Statistics
GET /api/referee/{refereeId}/statistics
Returns referee statistics per tournament: matches officiated, cards given, penalties awarded.
Referee Last Events
GET /api/referee/{refereeId}/events/last/{page}
Returns recent matches officiated by the referee, paginated.
Venue Endpoints
Venue Details
Returns venue information: name, city, country, capacity, surface type, coordinates, and photo.
Numeric venue ID (e.g., 624 for Emirates Stadium). Discover from match details (/api/match/{matchId}) or team details.
Example Requests
# Get manager career
curl -X GET "https://v2.football.sportsapipro.com/api/managers/793451/career" \
-H "x-api-key: YOUR_API_KEY"
# Get venue details
curl -X GET "https://v2.football.sportsapipro.com/api/venue/624" \
-H "x-api-key: YOUR_API_KEY"