# Livgolf — 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 shot-by-shot performance metrics for LIV Golf players across multiple events and rounds to analyze player statistics and compare gameplay. Monitor individual player progress and tournament data to gain insights into scoring patterns and shot performance throughout competitions.

**Category:** Sports | **Website:** [www.livgolf.com/leaderboard](https://www.livgolf.com/leaderboard) | **Docs:** [parse.bot/marketplace/b60a63b8-2e58-4943-a1fd-1e82815ef30a/livgolf-com-api](https://parse.bot/marketplace/b60a63b8-2e58-4943-a1fd-1e82815ef30a/livgolf-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-livgolf-com-api-b60a63b8/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_player_shots

Returns every shot a player took in a specific round of a LIV Golf event, ordered by hole sequence. Each shot includes club used, distance travelled, distance to pin, wind conditions, stroke position, and landing zone. Distances are in tenths of yards from the source (divide by 36 for approximate yards). One round typically yields 60-75 shots across 18 holes.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `event_slug` | string | Yes | URL slug of the event (e.g. 'andalucia', 'hong-kong', 'jeddah'). |
| `player_slug` | string | Yes | URL slug of the player, typically first-last name hyphenated (e.g. 'tyrrell-hatton', 'jon-rahm', 'dustin-johnson'). |
| `round_number` | string | No | Round number (1-4). |
| `season` | string | No | Season year (e.g. '2026', '2025'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-livgolf-com-api-b60a63b8/get_player_shots \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"event_slug":"<string>","player_slug":"<string>","round_number":"<string>","season":"<string>"}'
```
