Discover/kvb.koeln API
live

kvb.koeln APIwww.kvb.koeln

Get real-time departure schedules and stop data for Cologne's KVB transit network. Search stops by name, resolve IDs, and fetch live delays and platform info.

Endpoints
2
Updated
14d ago
Try it
Stop name to search for (e.g. 'Neumarkt', 'Dom/Hbf', 'Rudolfplatz')
Maximum number of results to return
api.parse.bot/scraper/ebd18bf3-f469-4e15-9143-226dfe76fec5/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/ebd18bf3-f469-4e15-9143-226dfe76fec5/search_stops?query=Neumarkt&max_results=5' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalclick to expand

Search for transit stops/stations by name. Returns matching stops with their IDs, coordinates, and available transit lines.

Input
ParamTypeDescription
queryrequiredstringStop name to search for (e.g. 'Neumarkt', 'Dom/Hbf', 'Rudolfplatz')
max_resultsintegerMaximum number of results to return
Response
{
  "type": "object",
  "fields": {
    "query": "string - the search query used",
    "stops": "array of stop objects with name, ext_id, lid, type, coordinates, and lines",
    "total": "integer - number of stops returned"
  },
  "sample": {
    "data": {
      "query": "Neumarkt",
      "stops": [
        {
          "lid": "A=1@O=Köln Neumarkt@X=6948329@Y=50935667@U=1@L=900000002@B=1@p=1778067838@",
          "name": "Köln Neumarkt",
          "type": "S",
          "lines": [
            {
              "name": "1",
              "category": "Stadtbahn"
            },
            {
              "name": "3",
              "category": "Str"
            },
            {
              "name": "136",
              "category": "Bus"
            }
          ],
          "ext_id": "900000002",
          "coordinates": {
            "latitude": 50.935667,
            "longitude": 6.948329
          }
        }
      ],
      "total": 5
    },
    "status": "success"
  }
}

About the kvb.koeln API

The KVB Cologne API provides 2 endpoints for querying real-time transit data from the Kölner Verkehrs-Betriebe network, covering trams (Stadtbahn), buses, and regional rail. Use search_stops to find any stop in the network by name and retrieve its ID, coordinates, and served lines. Use get_departures to pull live departure or arrival boards with scheduled times, real-time times, delay in minutes, and platform details.

Stop Search

The search_stops endpoint accepts a query string (e.g. 'Neumarkt', 'Dom/Hbf', 'Rudolfplatz') and returns an array of matching stop objects. Each stop includes a human-readable name, an ext_id for use in subsequent calls, a lid (location identifier), a type field indicating the stop category, lat/lon coordinates, and a list of lines serving that stop. The total field tells you how many stops matched. Use max_results to cap the response when you only need the top match.

Real-Time Departure and Arrival Boards

The get_departures endpoint resolves a stop either by stop_name or by stop_id (the ext_id from search_stops) — one of the two is required. Set type to 'DEP' for departures or 'ARR' for arrivals; it defaults to departures when omitted. Each item in the departures array carries line, category, direction, scheduled_time, realtime_time, delay_minutes, platform, date, and stop_name. The delay_minutes field is especially useful for detecting disruptions or catching connections programmatically.

Network Coverage

The API covers the full KVB network in Cologne, including numbered Stadtbahn tram lines (e.g. lines 1, 3, 7, 18), city bus routes, and regional rail services that stop at KVB-tracked stations. Stop IDs are stable identifiers suitable for persistent configuration in apps and dashboards. The lines array on each stop result lets you quickly filter stops by which specific routes serve them.

Common use cases
  • Display a live departure board for a specific KVB stop in a transit app, showing line, direction, and real-time delay.
  • Alert commuters when delay_minutes exceeds a threshold on their regular tram or bus line.
  • Resolve a user-typed stop name to a canonical ext_id via search_stops, then persist it for repeated get_departures calls.
  • Build a multi-stop arrival monitor for a Cologne venue, aggregating inbound services across several nearby stops.
  • Filter stops by the lines array to find all KVB stations served by a particular Stadtbahn line.
  • Power a kiosk display showing platform numbers and scheduled vs. real-time departure times for passengers.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does KVB provide an official developer API?+
KVB (Kölner Verkehrs-Betriebe) does not publish a documented public developer API for third-party use. Transit data for the Cologne network is accessible through this Parse API.
What exactly does `get_departures` return, and how do scheduled vs. real-time times differ?+
Each departure object includes both scheduled_time (the timetabled time) and realtime_time (the live predicted time). The delay_minutes field is the numeric difference between them, making it straightforward to detect late services without computing the diff yourself. Platform and stop name are also included per departure.
Does the API cover trip planning or route calculation between two stops?+
Not currently. The API covers stop search and real-time departure/arrival boards for individual stops. It does not calculate routes or connections between an origin and a destination. You can fork it on Parse and revise to add a trip-planning endpoint.
Can I retrieve historical departure data or only live schedules?+
The API returns current real-time and scheduled data for upcoming departures and arrivals. Historical departure records are not exposed by the endpoints. You can fork it on Parse and revise to add a historical or archival data endpoint if the underlying source supports it.
How do I look up a stop when I only know part of its name?+
Pass a partial name string in the query parameter of search_stops. It returns all matching stops with their ext_id, coordinates, and served lines. You can then use the ext_id directly in get_departures via the stop_id parameter to avoid ambiguity from name-based lookups.
Page content last updated . Spec covers 2 endpoints from www.kvb.koeln.
Related APIs in TravelSee all →
culturetrip.com API
Discover travel inspiration and plan your next adventure by browsing curated travel articles, destination guides, and bookable trips organized by region and city. Search for specific destinations, compare trip dates and prices, and explore popular cities to find the perfect getaway.
sevenrooms.com API
Search for available restaurant tables across any SevenRooms venue, view venue details and open dates, and complete reservations all in one place. Whether you're planning ahead or booking last-minute, you can check real-time availability and secure your table at thousands of restaurants on the SevenRooms platform.
delta.com API
Look up Delta Airlines flight schedules, check real-time flight status, and retrieve detailed trip information to plan your travel. Find your nearest airport and access the data you need to monitor flights and make booking decisions.
customs.gov.mv API
Check import/export duties, tariff classifications, and exchange rates for Maldives customs compliance, plus track vessel movements, company registrations, and declaration statuses. Get real-time data directly from the official customs portal to streamline your trade and logistics operations.
comedymothership.com API
Browse upcoming Comedy Mothership shows across different rooms, check real-time ticket availability, and get detailed information about Kill Tony events and seating options. Find venue details, FAQs, and track specific performances to plan your comedy night.
burningman.org API
Access comprehensive Burning Man information including Black Rock City event schedules, ticketing details, themed activities, playa events, volunteering opportunities, and mutant vehicle listings. Search global Burning Man events, stay updated with news and stories, and find preparation resources all in one place.
breckenridge.com API
Check real-time snow conditions, weather forecasts, lift operations, and trail status at Breckenridge Ski Resort to plan your day on the mountain. View live mountain cameras and get up-to-the-minute updates on slopes, lifts, and weather before you head out.
united.com API
Search United Airlines flights, check real-time flight status, and view detailed seat maps to plan your perfect trip. Compare fare options and use airport autocomplete to quickly find your departure and arrival cities.