# Uk Soccerway — 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 football fixtures from Soccerway by date, including competition name, teams, kickoff time, and score for completed matches.

**Category:** Sports | **Website:** [uk.soccerway.com/](https://uk.soccerway.com/) | **Docs:** [parse.bot/marketplace/b9560d0b-d762-4de7-bcce-c709dd56b899/uk-soccerway-com-api](https://parse.bot/marketplace/b9560d0b-d762-4de7-bcce-c709dd56b899/uk-soccerway-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-uk-soccerway-com-api-b9560d0b/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_fixtures

Retrieve football fixtures from Soccerway for a given day offset. Returns match details including competition name, teams, kickoff time or score, and match status for all available leagues worldwide. Only current and future dates are supported (day_offset >= 0).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `day_offset` | integer | No | Number of days from today into the future. 0 for today, 1 for tomorrow, 2 for the day after, etc. Must be 0 or greater; negative values are rejected. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-uk-soccerway-com-api-b9560d0b/get_fixtures \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"day_offset":"<integer>"}'
```
