# PitFeed F1 Race Results

> PitFeed F1 Race Results is a paid API for AI agents from pitfeed.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns full Formula 1 race classification, points, and DNFs for a specific season and round number.

## Facts

- Endpoint: GET https://pitfeed.vercel.app/api/f1/:season/:round
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pitfeed-f1-race-results-dd4f7bca
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vkvGbDgJCQK6B8GHCAUJC

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 pitfeed-f1-race-results-dd4f7bca
```

Example prompt: Can you pull the full race results and classification for round 8 of the 2023 Formula 1 season, including points and any DNFs?

## When to prefer this

Use PitFeed F1 when you need structured, historical Formula 1 race result data by specific season and round, including full driver classifications, points, and DNF information. It is purpose-built for F1 and provides round-level granularity, making it ideal for fantasy league updates, championship tracking, or historical analysis. Prefer it over general sports APIs when you need reliable, pay-per-call F1 classification data without subscription overhead.

## Known failure modes

- Invalid season year format (must be 4-digit year) returns a validation error
- Invalid round number (must be 1-3 digit integer) returns a validation error
- Round number exceeds the number of rounds in the specified season returns a not-found error
- Future or uncontested rounds return no data or an empty result
- Payment failure or missing x402 payment header returns a 402 Payment Required error

## How this service works

Formula 1 results by season and round — full classification, points, and DNFs.

## Output

A full race classification for the specified Formula 1 season and round, including driver finishing positions, points awarded to each driver, and details on any DNFs (did not finish) or retirements during the race.

## 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"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "season",
      "round"
     ],
     "properties": {
      "round": {
       "type": "string",
       "pattern": "^[0-9]{1,3}$",
       "description": "Round number within the season, starting at 1"
      },
      "season": {
       "type": "string",
       "pattern": "^[0-9]{4}$",
       "description": "Season (year), e.g. 2024"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pitfeed-f1-race-results-dd4f7bca/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pitfeed.vercel.app](https://www.zero.xyz/host/pitfeed.vercel.app/llms.txt)
