# Italoinviaggio Italotreno — 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 Italo train stations and check real-time departure and arrival information to plan your journey across the Italo network. Stay updated with live train schedules to never miss your connections.

**Category:** Travel | **Website:** [italoinviaggio.italotreno.com/it/stazione](https://italoinviaggio.italotreno.com/it/stazione) | **Docs:** [parse.bot/marketplace/207daa2e-58e5-4e30-9719-1a0af7fb93c8/italoinviaggio-italotreno-com-api](https://parse.bot/marketplace/207daa2e-58e5-4e30-9719-1a0af7fb93c8/italoinviaggio-italotreno-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-italoinviaggio-italotreno-com-api-207daa2e/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_live_trains

Get real-time train departures and arrivals for a specific Italo station. Returns current trains with delay information, platform assignments, and route details. Station may show empty results during overnight hours when no trains are running.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `station_code` | string | Yes | Station code from search_stations (e.g. 'RMT' for Roma Termini, 'RTB' for Roma Tiburtina). |
| `station_name` | string | Yes | Station name matching the station_code (e.g. 'roma termini', 'roma tiburtina'). Use the name from search_stations results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-italoinviaggio-italotreno-com-api-207daa2e/get_live_trains \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"station_code":"<string>","station_name":"<string>"}'
```

### search_stations

Search for Italo train stations by name. Returns matching stations with their codes, coordinates, and type information. Use this to find station_code values needed by get_live_trains.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Station or city name to search for (e.g. 'Roma', 'Milano', 'Napoli'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-italoinviaggio-italotreno-com-api-207daa2e/search_stations \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
