NFL

Seasons

Return the list of all available seasons for all competitions.

Credit Consumption: 1 API call credit per request

Endpoint: GET /v2/sport/nfl/seasons

Request

Sample Request

curl -X GET "https://api-ai-oracle.apro.com/v2/sport/nfl/seasons" -H "accept: application/json"

Response

{
    "status": {
        "timestamp": 1766463092506,
        "code": 200,
        "message": ""
    },
    "data": {
        "seasons": [
            {
                "year": 2025,
                "name": "2025"
            },
           ...
        ],
        "provider_seasons": [
            {
                "provider_name": "apisports",
                "seasons": [
                    {
                        "year": 2025,
                        "name": "2025"
                    },
                   ...
                ],
                "count": 4
            },
            {
                "provider_name": "rapidapi",
                "seasons": [
                    {
                        "year": 2025,
                        "name": "2025"
                    },
                    ...
                ],
                "count": 4
            },
            {
                "provider_name": "sportradar",
                "seasons": [
                    {
                        "year": 2025,
                        "name": "2025"
                    },
                   ...
                ],
                "count": 4
            }
        ],
        "total_seasons": 4,
        "timestamp": "2025-12-23T12:11:32.423667773+08:00",
        "signatures": [
            {
                "signer": "0xB8d725f09fB33852dA862EAB9e68536305CfE289",
                "hash": "0x598f7dce664b6912ea8e00f0d50546e95e8771905b2f112d6cab5c8d4f45b553",
                "signature": "0x549843745ed12621010b6ae49ee6bc807a6e806d4b2863b607c8b1377b86e463544175fee3f37cc01b22c1b42db1a36c307c5ac2961b47ff52d3c37430961bc000",
                "timestamp": 1766463092401
            },
            {
                "signer": "0xa79c2F060301ace9DcdcF838DF0F1bD7ff016Bf4",
                "hash": "0x598f7dce664b6912ea8e00f0d50546e95e8771905b2f112d6cab5c8d4f45b553",
                "signature": "0x8a1ed94dbbbc59cc90f16c6e6bfacdee72bc3869215abb7bcf81f5001f658c895136c3722064ff7d9e5b3d48100ae0478c8254d02530bae3966e4835f022226c01",
                "timestamp": 1766463092428
            },
            {
                "signer": "0x82c9F939242beDddD9a6EA1AFc823e6dA6658E0b",
                "hash": "0x598f7dce664b6912ea8e00f0d50546e95e8771905b2f112d6cab5c8d4f45b553",
                "signature": "0x6ce51a4387bdd214fa913e84d33e302b625a514a88d37fd0745f0c37161d5ab615a8f0471c9e1168f452dbcd478b570aeef93cc0e3e86a5b2674a4ed0f316f4a01",
                "timestamp": 1766463092345
            },
            {
                "signer": "0x13Ac6f9B4C3178D92ee60a7aC8e67063dB08552E",
                "hash": "0x598f7dce664b6912ea8e00f0d50546e95e8771905b2f112d6cab5c8d4f45b553",
                "signature": "0xe50e926e0a541b66ecbac3972aee54de27c545c2d50ccb5d7bf1a01a0f561a3d68750e455311dd2c03662b96d4603f26c43b0451ca168b3e73a45bf9d7cbd1c700",
                "timestamp": 1766463092379
            },
            {
                "signer": "0x2875540d8fad62e4CDC71d7a59611Eb578ab7Ccc",
                "hash": "0x598f7dce664b6912ea8e00f0d50546e95e8771905b2f112d6cab5c8d4f45b553",
                "signature": "0xf05b01d4717a03deaf2c62a67f3bf1a98e5682144c636f2136488c7885d500b9606659152d5a8aae1a99c138847337469c6107b324d9de8d6759ffecd1d5b4a500",
                "timestamp": 1766463092486
            }
        ]
    }
}

Teams

Return a set of data about the teams.

Credit Consumption: 2 API call credits per request

Endpoint: GET /v2/sport/nfl/teams

Request

Query Parameters:

  • season(string) – A valid season(Required parameters). Example: 2025

  • name (string) – The name of the team(Optional parameters). Example: Green Bay Packers

  • code(string) – The code of the team(Optional parameters). Example: GB

Sample Request

Sample Response

Games

Return the list of games according to the given parameters.

Credit Consumption: 5 API call credit per request

Endpoint:GET /v2/sport/nfl/games

Request

Query Parameters:

  • season(number) – A valid season(Required parameters). Example: 2025

  • id(string) – The id of the game(Optional parameters). Example: 6e70444ad9f7d772de46cdcee285486ef7705006ca5126b19df17de503b9f662

  • season_type(string) – The type of season(Optional parameters). Example: PRE, REG, POST

  • team(string) – The code of the team(Optional parameters). Example: IND

  • date (date) – A date of the game(Optional parameters). Example: 2025-12-23

  • live (boolean)-Matches starting in the past 4 hours. Example:true,false

Sample Request

Response

Last updated