# GamePulse Esports Tournament Breakdown

> GamePulse Esports Tournament Breakdown is a paid API for AI agents from gamepulse-zeta.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Returns the full bracket, team listings, and predictions for a specified esports tournament

## Facts

- Endpoint: GET https://gamepulse-zeta.vercel.app/api/esports/tournament
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gamepulse-esports-tournament-breakdown-5a32b8c5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EqcTTzGV8WxuShv7Jz53Z

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 gamepulse-esports-tournament-breakdown-5a32b8c5
```

Example prompt: Pull up the full tournament breakdown for ESL Pro League Season 20 — I want the complete bracket, all the teams, and who's predicted to win each round.

## When to prefer this

Use this endpoint when you need a comprehensive, single-call overview of an esports tournament including bracket structure, all competing teams, and predictive analysis. Prefer this over the match schedule or team intelligence endpoints when the user wants a holistic tournament picture rather than individual match or team data.

## Known failure modes

- Tournament not found or unrecognized tournament name returns an error or empty result
- Tournament not yet started may return incomplete bracket data
- Stale predictions if the data is not updated in real time
- Payment not processed (x402 flow failure) results in 402 response
- Rate limiting or invalid API key returns 401/429

## How this service works

Esports tournament breakdown for esports and esports-betting agents. Returns the full bracket, teams, and predictions for any tournament.

## Output

A structured response containing the full tournament bracket, participating teams and their details, and win predictions for each matchup or stage of the tournament.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "name"
     ],
     "properties": {
      "game": {
       "type": "string",
       "description": "game"
      },
      "name": {
       "type": "string",
       "description": "name"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gamepulse-esports-tournament-breakdown-5a32b8c5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gamepulse-zeta.vercel.app](https://www.zero.xyz/host/gamepulse-zeta.vercel.app/llms.txt)
