NCAA Football

Football Teams

Retrieve a list of supported football teams that are matched by multiple data providers.

Credit Consumption: 1 API call credits per request

Endpoint: GET /v2/sport/football/teams

RequestQuery Parameters:

  • classification (string) - Filter by classification: fbs, fcs

Sample Request

curl -X GET "https://api-ai-oracle.apro.com/v2/sport/football/teams?classification=fbs" \
  -H "accept: application/json"

Sample Response

{
    "status": {
        "timestamp": 1742456976497,
        "code": 200,
        "message": ""
    },
    "data": {
        "total": 1,
        "teams": [
            {
                "canonical_id": "ALA",
                "canonical_name": "Alabama Crimson Tide",
                "abbreviation": "BAMA",
                "conference": "SEC",
                "classification": "fbs"
            }
        ],
        "signatures": [
            {
                "signer": "0x...",
                "hash": "0x...",
                "signature": "0x...",
                "timestamp": 1767493423377
            }
        ]
    }
}

Football Game

Retrieve live game information based on home and away team IDs.

Credit Consumption: 5 API call credits per request

Endpoint: GET /v2/sport/football/game

RequestQuery Parameters:

  • home_team_id (string) - Home team canonical ID. Example: MISS

  • away_team_id (string) - Away team canonical ID. Example: TULN

  • date (string) - Date in YYYY-MM-DD format in America/New_York timezone. Example: 2025-12-21. If not provided, the current NY timezone date is used.

Sample Request

Sample Response

Football Schedules

Retrieve game schedules based on the home team, away team, and date.

Credit Consumption: 1 API call credits per request

Endpoint: GET /v2/sport/football/schedules

RequestQuery Parameters:

  • home_team_id (string) - Optional, Home team canonical ID. Example: MISS

  • away_team_id (string) - Optional, Away team canonical ID. Example: TULN

  • date (string) - Date in YYYY-MM-DD format in America/New_York timezone. Example: 2025-12-21. If not provided, the current NY timezone date is used.

Sample Request

Sample Response

Last updated