# MLB Standings via MLB StatsAPI (proxy.suverse.io)

> MLB Standings via MLB StatsAPI (proxy.suverse.io) 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 official MLB standings for a given season across American and National leagues, including wins, losses, win percentage, games back, and division rank for each team.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-mlb-standings
- 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/mlb-standings-via-mlb-statsapi-proxy-suverse-io-145a3796
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_l10jIokZbv1WBrTYLQx1u

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 mlb-standings-via-mlb-statsapi-proxy-suverse-io-145a3796 -d '<json body>'
```

Example prompt: Pull the current MLB standings for the 2024 season so I can see which teams are leading each division and who's in playoff contention.

## When to prefer this

Use this endpoint when you need official, authoritative MLB standings data from MLB's own StatsAPI, especially for building baseball dashboards, tracking playoff races, or answering season-level standings questions. Prefer this over scraping or unofficial sources when accuracy and structured data are required.

## Known failure modes

- Invalid or unsupported season year returns an error or empty result
- MLB StatsAPI upstream unavailability causes timeout or 502 error
- Malformed POST body returns 400 validation error
- Payment not completed or insufficient USDC balance returns 402 error

## How this service works

Official MLB standings for a season from MLB StatsAPI across the American and National leagues: each team with wins, losses, win percentage, games back, division rank. For AI agents answering playoff race questions and building baseball dashboards.

## Output

A structured breakdown of MLB standings by league and division, with each team's wins, losses, win percentage, games back from first place, and division rank for the specified 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/mlb-standings-via-mlb-statsapi-proxy-suverse-io-145a3796/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)
