Skip to main content

Team Endpoints

Team endpoints use string-based team IDs (e.g., Wtn9Stg0). Discover team IDs from score responses or search.

Team Transfers

Returns player transfers for a team with pagination. Parameters:
  • page (optional, default 0) — Page number for pagination
Transfer object fields:
  • direction"in" or "out"
  • playerName, playerId, playerUrl
  • type — e.g. "Transfer", "Loan", "Return from loan", "Free transfer", or "-" when unspecified
  • fee — string, may be "None" when undisclosed
  • fromTeam, fromTeamUrl, toTeam, toTeamUrl

Team Schedule

Returns upcoming/past fixtures for a team. Parameters:
  • country (optional) — Country ID
  • sport (optional, default 1) — Sport ID
  • offset (optional, default 0) — Day offset (0=today, 1=tomorrow, -1=yesterday)

Team News

Returns news articles related to the team. Article object fields:
  • title — article headline
  • url — article path (relative)
  • image — thumbnail URL
  • timestamp — Unix seconds
  • date — ISO 8601 datetime
  • source — publisher name

Key Notes

  • Team IDs in V3 are strings (e.g., "Wtn9Stg0"), not numeric like V1/V2
  • Team images are returned as full URLs in score responses (e.g., "image": "https://images.sportsapipro.com/res/image/data/...")
  • No separate image proxy endpoint needed — use the URL directly from the response. These image URLs need no x-api-key, do not count against your quota, and are CORS-open with a 180-day cache
  • V3 has no /images/{type}/{id} route (that pattern is V2 only). If you request one you will get a 404

Example

Last modified on September 10, 2026