Skip to content

Sport Schedule

Diving Deep?

This page is designed for AI Agents & users developing code directly. See Getting Started and Platform Guides


GET /api/v1/sports/{sport}/schedule

Get the upcoming Sports Schedule

Info

Games are available from 24 hours prior to now until a max of 7 days out. Not all sports go out the full 7 days, so update frequently to see what's available soon

Path params

  • sport (required): the sport to check e.g. NBA, NFL, etc
curl https://api.shipp.ai/api/v1/sports/nba/schedule?api_key=$api_key
const apiKey = "YOUR_API_KEY_HERE";
const url = `https://api.shipp.ai/api/v1/sports/nba/schedule?api_key=${apiKey}`;

const response = await fetch(url, {
  method: 'GET',
  headers: {
    'Content-Type': 'application/json'
  },
});

const result = await response.json();
import requests

url = "https://api.shipp.ai/api/v1/sports/nba/schedule"
api_key = "YOUR_API_KEY_HERE"

params = {
    "api_key": api_key
}

response = requests.get(url, params=params)

Response (200)

{
  "schedule": [
    {
      "sport": "Soccer",
      "game_status": "live",
      "game_id": "01KGREKH8PXFV8AHA4Q9H2Z68F",
      "scheduled": "2026-02-06T15:00:00Z",
      "home": "Al-Ittifaq FC",
      "home_team_players": null,
      "away": "Damac FC",
      "away_team_players": null
    },
  ]
}