# Suverse F1 Race Results

> Suverse F1 Race Results 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 race classification data for a given season and round, including driver positions, constructors, grid slots, laps, status, times, points, and fastest lap info.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-f1-race-results
- 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-race-results-b24e7dca
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HNVRQSf2yu3KGAeQXLkmi

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-race-results-b24e7dca -d '<json body>'
```

Example prompt: Can you pull the full race classification for the 2023 Monaco Grand Prix — I want to see each driver's finishing position, constructor, grid slot, laps, status, time, points, and fastest lap?

## When to prefer this

Choose this endpoint when you need official post-race F1 classification data including finishing positions, constructor assignments, laps, status, times, and points for any historical or current season round. Prefer it over general sports APIs when F1-specific structured race data is required without authentication overhead. It proxies the Jolpica-F1 (Ergast successor) dataset, making it the go-to for reliable historical F1 race results.

## Known failure modes

- Invalid or future season/round returns empty results or 404
- Round number out of range for the given season returns no data
- Network timeout or upstream Jolpica-F1 API unavailability returns a 5xx error
- Malformed request body (missing season or round) returns a 400 validation error
- Pre-1950 season queries may return incomplete or no data

## How this service works

Formula 1 race classification from Jolpica-F1 (Ergast successor): position, driver, constructor, grid, laps, status, time, points and fastest lap. Pass season and round. Keyless.

## Output

Returns a structured race classification list for the specified F1 season and round, with each entry containing driver position, driver name and ID, constructor name, starting grid position, laps completed, finishing status (e.g. Finished, +1 Lap, Retired), race time or gap to winner, championship points awarded, and fastest lap details (time, rank, average speed) where applicable.

## 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-race-results-b24e7dca/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)
