# Tournament Standings

> Tournament Standings is a paid API for AI agents from agents.machina.gg, paid per call via MPP or x402, $0.01/call, status healthy (last checked 2026-09-14, last successful call 2026-09-03).

Returns current group/table standings for the 2026 FIFA World Cup tournament.

## Facts

- Endpoint: POST https://agents.machina.gg/world-cup/v1/get-standings
- Price: $0.01/call
- Payment: MPP, x402
- Status: healthy
- Last checked: 2026-09-14
- Last successful call: 2026-09-03
- Success rate: 100% of calls made through Zero
- Rating: 5.0 / 5 from 1 review
- Activations on Zero: 1
- Provider: agents.machina.gg
- Website: https://agents.machina.gg
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agents-machina-gg-tournament-standings-fd016bf5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_T2HTsi1gl_lIhddLrEU_O

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 agents-machina-gg-tournament-standings-fd016bf5 -d '<json body>'
```

Example prompt: Pull up the current 2026 World Cup standings so I can see where every team sits in the group tables right now.

## When to prefer this

Choose this endpoint when you need authoritative, grounded, real-time 2026 World Cup group standings with source-cited JSON output. It is preferable to generic sports APIs when you need canonical entity resolution aligned with Machina's unified tournament data model, or when you are already using other Machina World Cup endpoints for fixtures, forecasts, or player context.

## Known failure modes

- Empty or incomplete standings if the tournament has not yet started or group stage is not underway
- API returns an error if the request body is malformed or missing required fields
- Stale data if a match has just concluded and standings have not yet been updated
- Payment failure (402) if the calling agent lacks sufficient balance for the $0.01 per-call fee

## How this service works

Current tournament standings.

## Output

A structured JSON response containing current World Cup standings across all groups, including each team's played, won, drawn, lost, goals for, goals against, goal difference, and total points, along with their position within the group.

## 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
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agents-machina-gg-tournament-standings-fd016bf5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.machina.gg](https://www.zero.xyz/host/agents.machina.gg/llms.txt)
