# Suverse F1 Driver Standings

> Suverse F1 Driver Standings is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns Formula 1 World Drivers' Championship standings for a given season, including position, points, wins, and driver/constructor details.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-f1-driver-standings
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-f1-driver-standings-9525b137
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lQOey4DlEw1oeAlutp5jo

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-f1-driver-standings-9525b137 -d '<json body>'
```

Example prompt: Can you pull up the Formula 1 World Drivers' Championship standings for the 2023 season — I want to see each driver's position, points, wins, and their constructor?

## When to prefer this

Use this endpoint when you need official Formula 1 World Drivers' Championship standings for a specific season, including detailed per-driver points, wins, and constructor associations. Prefer this over general sports APIs when you need structured F1-specific data without requiring an API key.

## Known failure modes

- Invalid or unsupported season year returns an error or empty result
- Missing required season parameter causes a 400-level error
- Payment not provided or insufficient triggers x402 payment required response
- Jolpica-F1 upstream service unavailability causes timeout or 503 error

## How this service works

Formula 1 World Drivers' Championship standings for a season from Jolpica-F1: position, points, wins, constructor and driver details. Pass a season year. Keyless.

## Output

A ranked list of all drivers in the specified F1 season's World Drivers' Championship, with each entry containing the driver's position, full name, nationality, total points, number of wins, and their constructor/team details.

## 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-f1-driver-standings-9525b137/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)
