API-Sports integration
API-Sports provides comprehensive sports data APIs covering over 2,000…
- Provider
- api_sports
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 67 available
Quick start
Call API-Sports from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to API-Sports's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"API_SPORTS_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own API-Sports API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
67 actions exposed via the
API-Sports integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
API_SPORTS_GET_AFL_GAMES -
API_SPORTS_GET_AFL_GAMES_STATISTICS_PLAYERS -
API_SPORTS_GET_AFL_SEASONS -
API_SPORTS_GET_AFL_STANDINGS -
API_SPORTS_GET_BASEBALL_GAMES_H2H -
API_SPORTS_GET_BASKETBALL_BETS -
API_SPORTS_GET_BASKETBALL_BOOKMAKERS -
API_SPORTS_GET_BASKETBALL_STATISTICS -
API_SPORTS_GET_CIRCUITS -
API_SPORTS_GET_COACHS -
API_SPORTS_GET_COUNTRIES -
API_SPORTS_GET_FIGHTERS_RECORDS
Show all 67 actions
-
API_SPORTS_GET_FIXTURES -
API_SPORTS_GET_FIXTURES_EVENTS -
API_SPORTS_GET_FIXTURES_HEADTOHEAD -
API_SPORTS_GET_FIXTURES_LINEUPS -
API_SPORTS_GET_FIXTURES_PLAYERS -
API_SPORTS_GET_FIXTURES_ROUNDS -
API_SPORTS_GET_FIXTURES_STATISTICS -
API_SPORTS_GET_FORMULA1_COMPETITIONS -
API_SPORTS_GET_FORMULA1_RACES -
API_SPORTS_GET_FORMULA1_RANKINGS_STARTINGGRID -
API_SPORTS_GET_GAMES_EVENTS -
API_SPORTS_GET_GAMES_QUARTERS -
API_SPORTS_GET_GAMES_STATISTICS_TEAMS -
API_SPORTS_GET_INJURIES -
API_SPORTS_GET_LEAGUES -
API_SPORTS_GET_LEAGUES_SEASONS -
API_SPORTS_GET_MMA_CATEGORIES -
API_SPORTS_GET_MMA_FIGHTERS -
API_SPORTS_GET_MMA_FIGHTS -
API_SPORTS_GET_MMA_FIGHTS_RESULTS -
API_SPORTS_GET_MMA_FIGHTS_STATISTICS_FIGHTERS -
API_SPORTS_GET_NBA_GAMES_STATISTICS -
API_SPORTS_GET_NFL_STANDINGS_CONFERENCES -
API_SPORTS_GET_ODDS -
API_SPORTS_GET_ODDS_BETS -
API_SPORTS_GET_ODDS_BOOKMAKERS -
API_SPORTS_GET_ODDS_LIVE -
API_SPORTS_GET_ODDS_LIVE_BETS -
API_SPORTS_GET_ODDS_MAPPING -
API_SPORTS_GET_PLAYERS -
API_SPORTS_GET_PLAYERS_PROFILES -
API_SPORTS_GET_PLAYERS_SEASONS -
API_SPORTS_GET_PLAYERS_SQUADS -
API_SPORTS_GET_PLAYERS_STATISTICS -
API_SPORTS_GET_PLAYERS_TEAMS -
API_SPORTS_GET_PLAYERS_TOP_ASSISTS -
API_SPORTS_GET_PLAYERS_TOP_RED_CARDS -
API_SPORTS_GET_PLAYERS_TOP_SCORERS -
API_SPORTS_GET_PLAYERS_TOP_YELLOW_CARDS -
API_SPORTS_GET_PREDICTIONS -
API_SPORTS_GET_RANKINGS_DRIVERS -
API_SPORTS_GET_RANKINGS_FASTEST_LAPS -
API_SPORTS_GET_RANKINGS_RACES -
API_SPORTS_GET_RANKINGS_TEAMS -
API_SPORTS_GET_SIDELINED -
API_SPORTS_GET_STANDINGS_DIVISIONS -
API_SPORTS_GET_STANDINGS_GROUPS -
API_SPORTS_GET_STANDINGS_STAGES -
API_SPORTS_GET_TEAMS -
API_SPORTS_GET_TEAMS_SEASONS -
API_SPORTS_GET_TEAMS_STATISTICS -
API_SPORTS_GET_TIMEZONE -
API_SPORTS_GET_TRANSFERS -
API_SPORTS_GET_TROPHIES -
API_SPORTS_GET_VENUES
Build with API-Sports
Open OverSkill, describe what you want to build, and reference API-Sports in your prompt — the AI will wire up the integration automatically.