{
  "x402Version": 2,
  "id": 6508,
  "slug": "6508",
  "resource": "https://x402-trends-server.onrender.com/api/sports-game-brief",
  "description": "Get normalized sports schedules, live or recent scores, matchup status, teams, venue and a concise game brief for NBA, NFL, MLB and English Premier League (EPL). Filter by league, date and optional team name or abbreviation. Use for NBA scores, NFL games, MLB scores, EPL fixtures, today's games, schedules and AI sports research.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0xF61F957D9aC432309219549b1Ae79Ae8b7C71fF5",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "50000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "bazaar": {
      "info": {
        "input": {
          "method": "GET",
          "queryParams": {
            "date": "2026-08-16",
            "league": "NFL",
            "limit": 10,
            "team": "KC"
          },
          "type": "http"
        },
        "output": {
          "example": {
            "cached": false,
            "count": 1,
            "date": "2026-08-16",
            "games": [
              {
                "awayScore": 20,
                "awayTeam": {
                  "abbreviation": "BAL",
                  "name": "Baltimore Ravens"
                },
                "clock": null,
                "date": "2026-08-16T00:20:00.000Z",
                "homeScore": 27,
                "homeTeam": {
                  "abbreviation": "KC",
                  "name": "Kansas City Chiefs"
                },
                "id": 7001,
                "league": "NFL",
                "period": 4,
                "postseason": false,
                "status": "Final",
                "summary": "Baltimore Ravens 20 at Kansas City Chiefs 27 — Final",
                "venue": "GEHA Field at Arrowhead Stadium"
              }
            ],
            "league": "NFL",
            "payment": "verified",
            "retrievedAt": "2026-08-16T18:00:00.000Z",
            "source": "BALLDONTLIE",
            "stale": false,
            "status": "success",
            "teamFilter": "KC"
          },
          "type": "json"
        }
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "input": {
            "additionalProperties": false,
            "properties": {
              "method": {
                "enum": [
                  "GET"
                ],
                "type": "string"
              },
              "queryParams": {
                "additionalProperties": false,
                "properties": {
                  "date": {
                    "description": "Game date in YYYY-MM-DD. Defaults to today's UTC date.",
                    "type": "string"
                  },
                  "league": {
                    "description": "Sports league: NBA basketball, NFL football, MLB baseball, or EPL English Premier League soccer.",
                    "enum": [
                      "NBA",
                      "NFL",
                      "MLB",
                      "EPL"
                    ],
                    "type": "string"
                  },
                  "limit": {
                    "description": "Maximum games returned. Defaults to 10 and cannot exceed 20.",
                    "maximum": 20,
                    "minimum": 1,
                    "type": "integer"
                  },
                  "team": {
                    "description": "Optional team name or abbreviation filter, such as LAL, Lakers, KC, Chiefs, LAD, Dodgers, Arsenal, or ARS.",
                    "type": "string"
                  }
                },
                "required": [
                  "league"
                ],
                "type": "object"
              },
              "type": {
                "const": "http",
                "type": "string"
              }
            },
            "required": [
              "type",
              "method"
            ],
            "type": "object"
          },
          "output": {
            "properties": {
              "example": {
                "additionalProperties": false,
                "properties": {
                  "cached": {
                    "type": "boolean"
                  },
                  "count": {
                    "type": "integer"
                  },
                  "date": {
                    "type": "string"
                  },
                  "games": {
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "awayScore": {
                          "type": [
                            "number",
                            "null"
                          ]
                        },
                        "awayTeam": {
                          "additionalProperties": false,
                          "properties": {
                            "abbreviation": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "name": {
                              "type": "string"
                            }
                          },
                          "required": [
                            "name",
                            "abbreviation"
                          ],
                          "type": "object"
                        },
                        "clock": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "date": {
                          "type": "string"
                        },
                        "homeScore": {
                          "type": [
                            "number",
                            "null"
                          ]
                        },
                        "homeTeam": {
                          "additionalProperties": false,
                          "properties": {
                            "abbreviation": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "name": {
                              "type": "string"
                            }
                          },
                          "required": [
                            "name",
                            "abbreviation"
                          ],
                          "type": "object"
                        },
                        "id": {
                          "type": [
                            "integer",
                            "string"
                          ]
                        },
                        "league": {
                          "type": "string"
                        },
                        "period": {
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "postseason": {
                          "type": [
                            "boolean",
                            "null"
                          ]
                        },
                        "status": {
                          "type": "string"
                        },
                        "summary": {
                          "type": "string"
                        },
                        "venue": {
                          "type": [
                            "string",
                            "null"
                          ]
                        }
                      },
                      "required": [
                        "id",
                        "league",
                        "date",
                        "status",
                        "homeTeam",
                        "awayTeam",
                        "homeScore",
                        "awayScore",
                        "venue",
                        "summary"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "league": {
                    "type": "string"
                  },
                  "payment": {
                    "type": "string"
                  },
                  "retrievedAt": {
                    "type": "string"
                  },
                  "source": {
                    "type": "string"
                  },
                  "stale": {
                    "type": "boolean"
                  },
                  "status": {
                    "type": "string"
                  },
                  "teamFilter": {
                    "type": [
                      "string",
                      "null"
                    ]
                  }
                },
                "required": [
                  "status",
                  "source",
                  "league",
                  "date",
                  "teamFilter",
                  "count",
                  "cached",
                  "stale",
                  "retrievedAt",
                  "games"
                ],
                "type": "object"
              },
              "type": {
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          }
        },
        "required": [
          "input"
        ],
        "type": "object"
      }
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "x402-trends-server.onrender.com",
  "lastUpdated": "2026-09-03T02:14:21.735Z",
  "quality": {
    "calls30d": 3,
    "uniquePayers30d": 3,
    "lastCalledAt": "2026-09-03T02:14:21.56Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "x402-trends-server.onrender.com",
    "manifest_name": "x402-trends-server.onrender.com",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}