# Trainline — 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.

> Search for train stations and routes across the UK and Europe, then find and compare available journeys with schedules and pricing. Book your ideal train trip by accessing real-time travel options directly from Trainline.com.

**Category:** Travel | **Website:** [trainline.eu/](https://trainline.eu/) | **Docs:** [parse.bot/marketplace/ceb78020-1bd5-49ad-a0af-fa61f8afaedb/trainline-eu-api](https://parse.bot/marketplace/ceb78020-1bd5-49ad-a0af-fa61f8afaedb/trainline-eu-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-trainline-eu-api-ceb78020/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_routes_from_station

Retrieve all available routes and destinations reachable from a given station. Returns destination station names, countries, typical journey durations, daily train frequency, and first/last departure times. Use a station URN from search_locations as input. Results are ordered by popularity as indexed by Trainline.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `station_urn` | string | Yes | Station URN identifying the origin station (e.g. 'urn:trainline:generic:loc:182gb' for London). Obtain from search_locations. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-trainline-eu-api-ceb78020/get_routes_from_station \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"station_urn":"<string>"}'
```

### search_journeys

Search for train journeys between two locations. Returns up to 8 available journeys with departure/arrival times, duration, distance, and CO2 emissions. Use station URNs from search_locations as origin and destination. Results are sorted by departure time. Each journey includes leg count for identifying direct vs connecting services.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `departure_date` | string | No | Departure date and optional time in ISO format. Accepts YYYY-MM-DD (time defaults to 09:00) or YYYY-MM-DDTHH:MM:SS. If omitted, defaults to tomorrow at 09:00 UTC. |
| `destination` | string | Yes | Destination station URN from search_locations (e.g. 'urn:trainline:generic:loc:115gb'). |
| `origin` | string | Yes | Origin station URN from search_locations (e.g. 'urn:trainline:generic:loc:182gb'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-trainline-eu-api-ceb78020/search_journeys \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"departure_date":"<string>","destination":"<string>","origin":"<string>"}'
```

### search_locations

Search for train station locations by name. Returns station URNs, coordinates, and metadata. Each station has a URN that uniquely identifies it and can be used as origin or destination in search_journeys. Results include both individual stations and station groups (e.g. 'London' encompasses multiple terminals). Partial name matching is supported.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Station name or partial name to search for (e.g. 'London', 'Manchester', 'Paris'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-trainline-eu-api-ceb78020/search_locations \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
