# Suverse Sports Events by Day

> Suverse Sports Events by Day 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 all sports events on a given date from TheSportsDB, optionally filtered by sport, including teams, league, venue, time, and final score.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-sports-events-day
- 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-events-by-day-e2cbb0f8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nXLH1sXVyGi3IxtHjqIJm

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-events-by-day-e2cbb0f8 -d '<json body>'
```

Example prompt: What soccer games are on today? Give me the teams, venue, and scores if any are already finished.

## When to prefer this

Use this endpoint when you need a structured, date-scoped list of sports events across one or all sports, especially when building daily briefings, answering 'what's on today' queries, or checking scores for a specific day. Prefer it over general web search when you need structured data fields like venue, league, and score rather than free-text articles.

## Known failure modes

- No events found for the given date — returns empty list
- Invalid date format — request rejected
- Unknown sport filter value — may return empty or error
- Upstream TheSportsDB API unavailable — proxy returns error
- Payment not processed — x402 payment required error

## How this service works

All sports events on a given date, optionally filtered by sport, from TheSportsDB: teams, league, sport, venue, time, and final score when available. For AI agents building daily sports briefings and answering what games are on questions.

## Output

A list of sports events for the requested date, each containing event name, participating teams, league, sport type, venue, scheduled time, and final score when the match has concluded. Data is 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-events-by-day-e2cbb0f8/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)
