# PitFeed NASCAR Cup Series Race Results

> PitFeed NASCAR Cup Series 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 NASCAR Cup Series race results for a given season and round, including classification, points, and DNFs.

## Facts

- Endpoint: GET https://pitfeed.vercel.app/api/nascar/: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-nascar-cup-series-race-results-bcb3e7f2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4haFXKSefKY1u3jxbtMet

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-nascar-cup-series-race-results-bcb3e7f2
```

Example prompt: Can you pull up the full NASCAR Cup Series results for round 5 of the 2024 season — I want to see the finishing classification, points, and any DNFs?

## When to prefer this

Use this endpoint when you need structured, per-round NASCAR Cup Series race results including classification, points, and DNFs. Prefer this over generic sports APIs when you need motorsport-specific detail for a particular season and round combination. Sister endpoints exist for Formula 1, IndyCar, MotoGP, WEC, and GT World Challenge if NASCAR is not the target series.

## Known failure modes

- Invalid season format (must be 4-digit year) returns an error
- Round number out of range for the specified season returns not found
- Future or unscheduled rounds return no data or an error
- Malformed path parameters trigger a 400-level response

## How this service works

NASCAR Cup Series results by season and round — full classification, points, and DNFs.

## Output

A structured response containing the full race classification for the specified NASCAR Cup Series season and round, including each driver's finishing position, points earned, and DNF status.

## 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-nascar-cup-series-race-results-bcb3e7f2/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)
