# PitFeed MotoGP Results

> PitFeed MotoGP 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 MotoGP race classification, points, and DNFs for a given season and round number.

## Facts

- Endpoint: GET https://pitfeed.vercel.app/api/motogp/: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-motogp-results-7b39668f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_F2SUT8rRfPvL-DmSoE6li

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-motogp-results-7b39668f
```

Example prompt: Can you pull up the full MotoGP race results for round 8 of the 2024 season — I want to see the classification, points, and any DNFs?

## When to prefer this

Choose this endpoint when you need structured, per-round MotoGP race results including classification and DNFs, and you know the specific season year and round number. Prefer this over generic sports APIs when you need MotoGP-specific detail like points breakdowns and DNF data for a precise round.

## Known failure modes

- Invalid season format (non-4-digit year) returns a validation error
- Invalid round number (non-numeric or out of range) returns a validation error
- Round not yet run or data unavailable for the requested season/round may return empty or 404
- Payment not completed (x402) results in access denial
- Network or upstream data source outage may cause timeouts

## How this service works

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

## Output

A structured response containing the full race classification for the specified MotoGP season and round, including finishing positions, rider names, points awarded, and riders who did not finish (DNFs).

## 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-motogp-results-7b39668f/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)
