# GamePulse Esports Team Intelligence

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

Returns esports team form, roster composition, recent match results, and upcoming fixtures for a given team.

## Facts

- Endpoint: GET https://gamepulse-zeta.vercel.app/api/esports/team
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gamepulse-esports-team-intelligence-2b5dbfc0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pRqOP99q_3YNquGK8T-fN

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-team-intelligence-2b5dbfc0
```

Example prompt: Pull up the current form, roster, and upcoming matches for T1 in League of Legends — I want to know how they've been performing lately and who they're playing next.

## When to prefer this

Use this endpoint when you need a comprehensive snapshot of a specific esports team — roster, form, and fixtures — in a single call. Prefer this over the match schedule or tournament breakdown endpoints when the primary subject of interest is a particular team rather than a specific event or schedule. Ideal for esports betting pre-analysis, fantasy esports roster evaluation, or building team comparison workflows.

## Known failure modes

- Unknown or misspelled team name returns a 404 or empty result
- Team exists but has no recent matches on record, returning sparse data
- Game title not supported returns an error or null results
- API may return stale data if team roster recently changed
- Rate limiting or payment failure returns 402 or 429 error

## How this service works

Esports team intelligence for esports and esports-betting agents. Returns team form, roster, recent results, and upcoming matches.

## Output

Returns a structured profile of the requested esports team including current roster with player names and roles, recent match results with win/loss record and scores, team form rating, and a list of upcoming scheduled matches with opponents and dates.

## 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-team-intelligence-2b5dbfc0/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)
