# Reise Ruter — 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.

> Access real-time bus arrivals and departures for Oslo's public transit network (Ruter). Search for stops by name and retrieve live schedules with up-to-the-minute tracking across buses, trams, and metro lines.

**Category:** Travel | **Website:** [reise.ruter.no/](https://reise.ruter.no/) | **Docs:** [parse.bot/marketplace/2aaa4087-74dc-4d6d-bd12-cf67d8886b71/reise-ruter-no-api](https://parse.bot/marketplace/2aaa4087-74dc-4d6d-bd12-cf67d8886b71/reise-ruter-no-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-reise-ruter-no-api-2aaa4087/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_bus_arrivals

Get bus arrival times at a stop. Accepts either a stop name (auto-resolved to the first matching SearchStopPlace ID) or a known stop ID directly. Returns bus-only departures with line numbers, names, destinations, platforms, and real-time times. Sorted by expected time ascending.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `start_time` | string | No | ISO 8601 datetime to get departures from (e.g. '2026-06-11T12:00:00.000Z'). Defaults to current time. |
| `stop_id` | string | No | NSR stop place ID (e.g. 'NSR:StopPlace:58366'). Either stop_name or stop_id is required. |
| `stop_name` | string | No | Name of the bus stop to search for (e.g. 'Jernbanetorget', 'Majorstuen'). Either stop_name or stop_id is required. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-reise-ruter-no-api-2aaa4087/get_bus_arrivals \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"start_time":"<string>","stop_id":"<string>","stop_name":"<string>"}'
```

### get_departures

Get all departures at a stop place with optional transport mode filter. Returns detailed departure info including platform, line, scheduled/expected/actual times, real-time status, and service alerts. Sorted by expected time ascending. Each departure carries nested platform and line objects.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `start_time` | string | No | ISO 8601 datetime to get departures from (e.g. '2026-06-11T12:00:00.000Z'). Defaults to current time. |
| `stop_id` | string | Yes | NSR stop place ID (e.g. 'NSR:StopPlace:58366'). Get this from search_stop endpoint. |
| `transport_mode` | string | No | Filter by transport mode: 'Bus', 'Tram', or 'Metro'. Returns all modes if not specified. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-reise-ruter-no-api-2aaa4087/get_departures \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"start_time":"<string>","stop_id":"<string>","transport_mode":"<string>"}'
```

### search_stop

Full-text search over transit stops by name. Returns stop places with IDs, coordinates, transport modes, and fare zones. Each result carries a type discriminator (SearchStopPlace, Place, PointOfInterest_v2). Only SearchStopPlace entries include transport_modes and zone. The returned stop ID feeds get_departures and get_bus_arrivals.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `latitude` | number | No | Latitude coordinate for distance-based sorting of results |
| `longitude` | number | No | Longitude coordinate for distance-based sorting of results |
| `query` | string | Yes | Search query for stop name (e.g. 'Jernbanetorget', 'Majorstuen', 'Oslo S') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-reise-ruter-no-api-2aaa4087/search_stop \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"latitude":"<number>","longitude":"<number>","query":"<string>"}'
```
