# Suverse Sports League Table

> Suverse Sports League Table 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-16).

Returns the full league standings table for a given football/soccer league and season from TheSportsDB, including rank, played, wins, draws, losses, goals for/against, goal difference, and points for each team.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-sports-league-table
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-sports-league-table-4ae8d0ae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IESdr6wvSThGvMPo6Lw9n

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-league-table-4ae8d0ae -d '<json body>'
```

Example prompt: Can you pull up the current Premier League standings table for the 2023-2024 season so I can see each team's rank, points, and goal difference?

## When to prefer this

Choose this endpoint when you need a complete, structured league standings table for a specific football/soccer league and season, particularly when building sports dashboards, answering fan standings questions, or powering fantasy sports applications. It is ideal when you need all standard table metrics (rank, points, goal difference, etc.) for every team in one call, sourced from TheSportsDB.

## Known failure modes

- Unknown or invalid league ID returns empty or error response
- Unsupported season format causes lookup failure
- TheSportsDB upstream unavailability results in degraded or null response
- Payment not accepted or x402 handshake failure blocks the request
- Season data not yet available for very recent or future seasons

## How this service works

League standings table for a league and season from TheSportsDB: each team with rank, played, win, draw, loss, goals for and against, goal difference, points. For AI agents answering standings questions and powering sports dashboards and fantasy.

## Output

A structured standings table with one row per team containing: league rank, team name, games played, wins, draws, losses, goals scored, goals conceded, goal difference, and total points — covering all teams in the specified league and season.

## 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-league-table-4ae8d0ae/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)
