API · /trainstations-api

Train Stations API

healthy 4,824 Subscribers

Search a database of 69,000+ European railway stations from the Trainline open dataset. Find stations by name and country, look one up by id or UIC code, or find all stations near a coordinate (radius search). Each record includes coordinates, UIC code, timezone and a main-station flag — ideal for travel apps, journey planners, ticketing and mobility tooling.

api.oanor.com/trainstations-api
Get an API key Try in playground → Contact provider

Machine-readable spec so AI agents can integrate this API.

/api/trainstations-api/openapi.json
/api/trainstations-api/llms.txt

Discovery: GET /api/index.json lists every API.

API health

healthy
Uptime
100.00%
Server probes · 24h
Avg latency
92 ms
Server probes · 24h
Subscribers
4,824
active
Total calls
500
last 7 days
status Full status page → · 30 probes/24h

Pricing

Pick a tier — billed monthly, cancel anytime.

Free

Free

  • 2,000 calls / month
  • 2 requests / second
  • Hard cap (429 above quota, no overage)
  • 2,000 calls/month
  • 2 req/sec
  • Search + nearby + lookup
  • No credit card
Sign in to subscribe

Starter

€8.50 /month

  • 45,000 calls / month
  • 8 requests / second
  • Hard cap (429 above quota, no overage)
  • 45k calls/month
  • 8 req/sec
  • Country & main-station filters
  • Email support
Sign in to subscribe

Pro

€22.00 /month

  • 225,000 calls / month
  • 20 requests / second
  • Hard cap (429 above quota, no overage)
  • 225k calls/month
  • 20 req/sec
  • UIC resolution + radius search
  • Priority support
Sign in to subscribe

Mega

€56.00 /month

  • 900,000 calls / month
  • 45 requests / second
  • Hard cap (429 above quota, no overage)
  • 900k calls/month
  • 45 req/sec
  • Journey-planner integration
  • Dedicated SLA
Sign in to subscribe

Built by

Related APIs

Other APIs with overlapping tags.

Transport for London API

London public transport as an API, powered by the official Transport for London Unified API. Get live line status for the Tube and every other mode (DLR, Overground, Elizabeth line, trams, buses, river bus) with severity and disruption reasons, search any station or stop by name to get its NaPTAN id, modes, lines and coordinates, pull live arrival predictions for a stop (which line, to where, in how many minutes, from which platform), check a single line in detail with its current disruptions, and plan a door-to-door journey between two places with full leg-by-leg directions and durations. Stops and journey endpoints accept a place name, a NaPTAN id or lat,lon. Perfect for commuter and travel apps, station departure boards, status widgets, Slack/Discord bots and trip planners. No accounts, no upstream key.

api.oanor.com/tfl-api

Bike-Share API

Every public bike-share and e-scooter system in the world as an API — 1,500+ systems across 48 countries from the MobilityData GBFS catalog, plus LIVE station availability. Browse and search the systems catalog by country or name (Citi Bike, Vélib', Divvy, Blue Bikes, Capital Bikeshare, …), look up a system with its GBFS feed URLs, and fetch real-time station data — each station's name, location, capacity and how many bikes and docks are free right now — or find the nearest stations to any coordinate by great-circle distance. Ideal for trip-planning, mobility, maps and smart-city apps. Catalog data from MobilityData; live availability from each operator's official GBFS feed.

api.oanor.com/bikeshare-api

UN/LOCODE API

The UN/LOCODE registry (United Nations Code for Trade and Transport Locations) as an API — 116,000+ ports, airports, rail and road terminals and trade points across 249 countries. Resolve any 5-character code (e.g. USNYC → New York; DEHAM → Hamburg; NLRTM → Rotterdam) to its name, country, subdivision, transport functions (port, rail, road, airport, postal, …), IATA code and coordinates; search locations by name with country and function filters; or list every location in a country. UN/LOCODE is the standard used in shipping, logistics, customs and EDI. Ideal for supply-chain, freight, trade-compliance and logistics software.

api.oanor.com/locode-api

Wikivoyage API

Wikivoyage as an API — the free, community-written worldwide travel guide, the travel sister project of Wikipedia. Wikivoyage covers countries, cities, regions, neighbourhoods and points of interest with practical, freely-licensed advice on what to see and do, how to get around, and where to eat and sleep. This API wraps the official Wikivoyage MediaWiki service into clean JSON. /v1/destination?title=Paris returns a destination's guide: its one-line description, the introductory guide text as plain readable prose, its geographic coordinates, a thumbnail image and the canonical URL — everything to present a destination at a glance. /v1/search?q=beaches searches the travel guides by keyword and returns matching destination titles with a short snippet, for building destination finders and autocomplete. /v1/nearby?lat=48.8584&lon=2.2945&radius=10000 finds destinations and points of interest within a radius (up to 10 km) of any coordinate, sorted by distance — perfect for "what is worth visiting near me" and map-based discovery. Titles are Wikivoyage article names such as Paris, Rome, Tokyo or Paris/7th arrondissement. Ideal for travel apps, trip planners, tourism dashboards, location-based discovery and chatbots. Content is licensed CC BY-SA by the Wikivoyage community. For encyclopaedic, non-travel content, pair this with a Wikipedia API.

api.oanor.com/wikivoyage-api

Frequently asked questions

Quick answers about pricing, quotas, and integration.

How do I get an API key for Train Stations API?
Sign up for free at oanor.com, generate an API key from the developer dashboard, and call Train Stations API with the x-oanor-key header. No credit card needed for the free tier.
What's the rate limit for Train Stations API?
Free tier allows 1 request per second. Paid plans scale up to 50 requests per second on the Mega tier. Hard limits return HTTP 429 above the quota — no surprise overage charges.
How much does Train Stations API cost?
Train Stations API has a free tier with 100 calls / month. Paid plans start at €8.50 / month with higher quotas and faster rate limits.
Can I cancel my subscription anytime?
Yes. Plans are billed monthly and you can cancel anytime from your billing dashboard. No long-term contracts and no cancellation fee.
Is Train Stations API GDPR-compliant?
All requests to Train Stations API go through our EU-based gateway. Your upstream API key never leaves our server and no personal data is shared with the upstream provider beyond the request you send.

Pick an endpoint from the list on the left to see its details and try it.

Code snippets

Sign up to get an API key, then call any path under your slug.

curl https://api.oanor.com/trainstations-api/SOME_PATH \
  -H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/trainstations-api/SOME_PATH", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/trainstations-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
    "https://api.oanor.com/trainstations-api/SOME_PATH",
    headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())

Ratings

Sign in to rate.

No reviews yet.

Discussion

Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.

Sign in to start a thread or reply.

Sign in

New thread

/ 4000

📌 Pinned 🔒 Locked

·

· ·

/ 4000

🔒 This thread is locked — no new replies.

  • No threads yet — start the discussion.

Support

Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.

Sign in to open a support ticket.

Sign in

Open new ticket

Describe what you need help with. The provider team gets an email and replies on the ticket page.

  • No tickets yet for this API.

Subscription active — calls can start immediately.

Send your first request —

Subscription active — copy a snippet and fire off your first call.