# PitFeed GT World Challenge Europe Results

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

Returns GT World Challenge Europe (Sprint Cup and Endurance Cup) race results for a specified season and round number.

## Facts

- Endpoint: GET https://pitfeed.vercel.app/api/gtwc/:season/:round
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pitfeed-gt-world-challenge-europe-results-f6623639
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1q3nEsYoK1RDtn2n_5Hfi

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-gt-world-challenge-europe-results-f6623639
```

Example prompt: Can you pull up the GT World Challenge Europe results for round 3 of the 2024 season? I want to see the full race classification and points.

## When to prefer this

Use this endpoint when you specifically need GT World Challenge Europe (GTWC) race results including Sprint Cup or Endurance Cup classifications. It is the right choice for GT3-class endurance and sprint racing data from European rounds. Prefer this over generic sports APIs when you need structured, per-round GTWC data with points and DNF detail.

## Known failure modes

- Invalid season format (non-4-digit year) returns validation error
- Round number out of range for the specified season returns not found
- Future or unplayed rounds may return empty or error response
- Season data not yet available returns error or empty result
- Network timeout on the Vercel-hosted endpoint

## How this service works

GT World Challenge Europe results (Sprint Cup + Endurance Cup) by season and round.

## Output

Returns full race classification data for the specified GT World Challenge Europe season and round, including driver/team standings, finishing positions, points awarded, and DNF information for both Sprint Cup and Endurance Cup events.

## 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-gt-world-challenge-europe-results-f6623639/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)
