# GG.co.uk — 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.

> Get daily horse racing tips and expert picks from GG.co.uk, including individual race recommendations and curated Lucky 15 selections to guide your betting decisions. Access fresh tips for every race to help you make more informed choices on the track.

**Category:** Sports | **Website:** [gg.co.uk/racecards/](https://gg.co.uk/racecards/) | **Docs:** [parse.bot/marketplace/c7aec204-716a-47df-8ee0-de3042a50be8/gg-co-uk-api](https://parse.bot/marketplace/c7aec204-716a-47df-8ee0-de3042a50be8/gg-co-uk-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-gg-co-uk-api-c7aec204/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_daily_tips

Retrieves free horse racing tips for every race scheduled on the given day across UK and Ireland venues. Each tip includes the recommended horse, race time, venue, and current best odds. One tip per race. Results are grouped by venue in time order.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `day` | string | No | Which day's tips to retrieve. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-gg-co-uk-api-c7aec204/get_daily_tips \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"day":"<string>"}'
```

### get_top_tips

Retrieves the editor's curated top tips (Lucky 15 selections) for the given day. These are a smaller set of best picks chosen from all available races. Each tip includes the recommended horse, race time, venue, and current best odds.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `day` | string | No | Which day's top tips to retrieve. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-gg-co-uk-api-c7aec204/get_top_tips \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"day":"<string>"}'
```
