# European Tour — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Track detailed hole-by-hole scorecards and round-by-round statistics for DP World Tour players to analyze performance across European Tour tournaments. Monitor individual player scores, course difficulty, and scoring patterns to gain insights into competitive golf results.

**Category:** Sports | **Website:** [www.europeantour.com/dpworld-tour/](https://www.europeantour.com/dpworld-tour/) | **Docs:** [parse.bot/marketplace/620c938c-73be-47ce-ae7e-fc2d0d7fc30d/europeantour-com-api](https://parse.bot/marketplace/620c938c-73be-47ce-ae7e-fc2d0d7fc30d/europeantour-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-europeantour-com-api-620c938c/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_round_stats

Retrieve detailed per-round performance statistics for a player in a tournament, including driving accuracy, driving distance, greens in regulation, putts per round, scrambles, and field-relative rankings for each metric.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `event_id` | string | Yes | Numeric tournament event identifier (e.g. 2026126 for Genesis Scottish Open 2026). |
| `player_id` | string | Yes | Numeric player identifier on the DP World Tour (e.g. 34024 for Rory McIlroy). |
| `round_number` | string | Yes | Round number (1-4). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-europeantour-com-api-620c938c/get_round_stats \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"event_id":"<string>","player_id":"<string>","round_number":"<string>"}'
```

### get_scorecard

Retrieve a player's hole-by-hole scorecard for all rounds in a tournament. Each hole shows the number of strokes and score classification (eagle, birdie, par, bogey). Returns all completed rounds with front-nine/back-nine/total strokes and score-to-par per round.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `event_id` | string | Yes | Numeric tournament event identifier (e.g. 2026126 for Genesis Scottish Open 2026). |
| `player_id` | string | Yes | Numeric player identifier on the DP World Tour (e.g. 34024 for Rory McIlroy). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-europeantour-com-api-620c938c/get_scorecard \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"event_id":"<string>","player_id":"<string>"}'
```
