# Sprint Results F1 Race Results and Standings

**Use case:** 

Extract F1 Race Results and Standings data filtered by Sprint Results. Export structured results ready for analysis, lead generation, or research.

## Input

```json
{
  "maxItems": 10,
  "endpoint": "sprint",
  "season": "2024",
  "round": "",
  "driverId": "",
  "constructorId": "",
  "circuitId": ""
}
```

## Output

```json
{
  "season": {
    "label": "Season",
    "format": "text"
  },
  "round": {
    "label": "Round",
    "format": "text"
  },
  "raceName": {
    "label": "Race",
    "format": "text"
  },
  "date": {
    "label": "Date",
    "format": "text"
  },
  "circuitName": {
    "label": "Circuit",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "position": {
    "label": "Pos",
    "format": "text"
  },
  "driverName": {
    "label": "Driver",
    "format": "text"
  },
  "constructorName": {
    "label": "Team",
    "format": "text"
  },
  "points": {
    "label": "Points",
    "format": "text"
  },
  "timeOrStatus": {
    "label": "Time/Status",
    "format": "text"
  },
  "wikipediaUrl": {
    "label": "Wikipedia",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [F1 Race Results and Standings Scraper](https://apify.com/parseforge/f1-ergast-results-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/f1-ergast-results-scraper) to learn more, explore other use cases, and run it yourself.