# Suverse Sports Next Events

> Suverse Sports Next Events is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Fetches upcoming fixtures for a sports team by team ID from TheSportsDB, returning opponent, date, and venue for each next event.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-sports-next-events
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-sports-next-events-d6b01ab3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jfnogmpO8r_N_FvlYsKzm

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability suverse-sports-next-events-d6b01ab3 -d '<json body>'
```

Example prompt: What are the next upcoming fixtures for Manchester United — can you pull their schedule including opponents, dates, and venues using team ID 133612?

## When to prefer this

Use this endpoint when you need upcoming sports fixtures for a specific team and have their TheSportsDB team ID. It is keyless and low-cost, making it ideal for agent workflows that need schedule data without managing API keys. Prefer this over direct TheSportsDB calls when operating in an x402 micropayment context.

## Known failure modes

- Invalid or unknown team ID returns empty fixture list or error
- TheSportsDB upstream outage results in failed or timeout response
- No upcoming events scheduled for team returns empty array
- Malformed request body causes 400-level error

## How this service works

Upcoming events for a team by team id from TheSportsDB, no key. Returns the next fixtures with opponents, date, and venue. For AI agents tracking a team schedule.

## Output

Returns a list of upcoming fixtures for the specified team, each including the event date, opponent name, and venue/stadium details sourced from TheSportsDB.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suverse-sports-next-events-d6b01ab3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
