# Suverse MLB Schedule

> Suverse MLB Schedule 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-13).

Returns the official MLB game schedule for a given date, including home/away teams, game time, venue, status, and live or final scores.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-mlb-schedule
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-mlb-schedule-3e1a8042
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_z8Gq_LZoFUTKiQal8vuQ-

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-mlb-schedule-3e1a8042 -d '<json body>'
```

Example prompt: What MLB games are scheduled for today — give me the home and away teams, game times, venues, and scores for any games that are live or finished.

## When to prefer this

Choose this endpoint when you need structured, official MLB game data including live scores and game status for a specific date. Prefer it over generic sports data APIs when you need reliable, MLB-official sourcing with venue and team details in a single call.

## Known failure modes

- Invalid or missing date input returns an error or empty schedule
- Dates far in the future may return tentative or incomplete schedules
- Network or upstream MLB StatsAPI outages may cause failures
- Malformed POST body may result in a 400 error

## How this service works

Official MLB game schedule for a given date from MLB StatsAPI: each game with home and away teams, time, venue, status, and score when live or final. For AI agents building baseball briefings, tracking live games, and feeding fantasy and analytics.

## Output

A structured list of MLB games for the requested date, each containing home team, away team, scheduled game time, venue name, game status (scheduled, live, final), and score when available.

## 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-mlb-schedule-3e1a8042/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)
