Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Maps Geolocation / Transport for London Unified API
Transport for London Unified API logo

Digital Tfl Transport for London Unified API

★ Only Publicly Available OpenAPI DocumentMaps GeolocationRouting DirectionsapiKey84 EndpointsREST

For Agents

Get live London transport data — tube and bus arrivals, line status, journey planner, BikePoints, and disruptions — from TfL's Unified API. Authenticated via app_id and app_key.

Use for: Plan a journey from Paddington to Canary Wharf right now, Get the next tube arrivals at King's Cross, Check whether the Central line is suspended, Find the nearest BikePoint with available bikes

Not supported: Does not handle ticket purchase, Oyster top-up, or fare payment — use for live arrivals, journey planning, line status, and BikePoint data only.

Jentic publishes the only available OpenAPI specification for Transport for London Unified API, keeping it validated and agent-ready. The TfL Unified API is the canonical source for live London transport data: tube and bus arrivals, line statuses and disruptions, journey-planner results, BikePoint availability, air-quality readings, accident statistics, road status, taxi and minicab contacts, and station details. Travel apps, journey planners, and London-focused agents use it to answer 'when is the next Victoria-line train?' and 'how do I get from King's Cross to Heathrow right now?'. Authentication uses paired app_id and app_key query parameters issued from the TfL portal.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Transport for London Unified API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Transport for London Unified API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fapi.digital.tfl.gov.uk%2Ftfl" | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fapi.digital.tfl.gov.uk%2Ftfl" | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with Transport for London Unified API.

Plan a journey between two London locations via /Journey/JourneyResults/{from}/to/{to}

Get live arrival predictions for any line and stop via /Line/{ids}/Arrivals/{stopPointId}

Read current line status and disruptions via /Line/Mode/{modes}/Status and /Line/Mode/{modes}/Disruption

List BikePoint locations and availability via /BikePoint and /BikePoint/{id}

Read live air quality, accident stats by year, and road status feeds

Search lines, stops, and taxi contacts by name or postcode

Use Cases

Patterns agents use Transport for London Unified API for, with concrete tasks.

★ Live Tube and Bus Arrivals

Power a 'next train' or 'next bus' display by calling /Line/{ids}/Arrivals/{stopPointId} with the line and stop ids. The response carries vehicle ids, current location, predicted arrival times, and platform information. Refresh every 30 seconds for a transit-style live board, or call on demand from a chat agent that answers 'when is my next train?'.

Call GET /Line/victoria/Arrivals/940GZZLUKSX to fetch the next Victoria-line arrivals at King's Cross and surface the top 3

Door-to-Door Journey Planning

Ask the Unified API to plan a trip between any two London locations via /Journey/JourneyResults/{from}/to/{to}. It accepts station names, postcodes, addresses, and lat-long pairs, and returns multi-leg itineraries with walking, tube, bus, and rail segments plus durations and disruptions. This is the same engine that powers the official TfL journey planner.

Plan a journey from 'Paddington Station' to 'Canary Wharf' departing now and return the fastest option with leg-by-leg directions

Disruption-Aware Commute Assistant

Surface relevant disruptions before someone leaves the office by polling /Line/Mode/tube/Disruption and /Line/Mode/tube/Status. Filter to lines on the user's commute and push a notification only when severity is meaningful. Pair with /AccidentStats/{year} for longer-term safety insights into specific roads and junctions.

Fetch /Line/Mode/tube/Status and notify when the Central or Jubilee line shows severity below 'Good Service'

BikePoint Availability Map

Build a Santander Cycles companion app by reading /BikePoint to enumerate every dock and /BikePoint/{id} for live nbBikes, nbDocks, and nbSpaces. Filter by walking distance from the user's location and surface the closest BikePoint that has both bikes available and free spaces at the destination.

List BikePoints within 500m of lat 51.5074, lon -0.1278 with at least 3 bikes available and at least 3 empty docks

AI Agent London Travel Concierge

An AI agent uses TfL via Jentic to answer London travel questions during chat, voice, or task-based interactions. The agent searches Jentic by intent, loads the journey-planner or arrivals schema, and executes the call with parameters extracted from the conversation. Jentic injects the app_id and app_key query parameters automatically.

Search Jentic for 'plan a journey across London', load the schema, and return the next departure for a Bond Street to Bank trip

Key Endpoints

84 endpoints — jentic publishes the only available openapi specification for transport for london unified api, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

GET

/Journey/JourneyResults/{from}/to/{to}

Plan a journey between two locations

GET

/Line/{ids}/Arrivals/{stopPointId}

Live arrival predictions at a stop

GET

/Line/Mode/{modes}/Status

Line status by mode

GET

/Line/Mode/{modes}/Disruption

Disruptions by mode

GET

/BikePoint

List all BikePoints

GET

/BikePoint/{id}

Get a BikePoint with live availability

GET

/AirQuality

Get the air-quality data feed

GET

/Line/Search/{query}

Search lines and routes by query

GET

/Journey/JourneyResults/{from}/to/{to}

Plan a journey between two locations

GET

/Line/{ids}/Arrivals/{stopPointId}

Live arrival predictions at a stop

GET

/Line/Mode/{modes}/Status

Line status by mode

GET

/Line/Mode/{modes}/Disruption

Disruptions by mode

GET

/BikePoint

List all BikePoints

GET

/BikePoint/{id}

Get a BikePoint with live availability

GET

/AirQuality

Get the air-quality data feed

GET

/Line/Search/{query}

Search lines and routes by query

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring the Transport for London Unified API by hand means handling its paired app_id and app_key query credentials and mapping the journey, line, arrival, and BikePoint routes across 84 endpoints yourself. Through Jentic you install once, import the TfL Unified API from the API Directory, store the keys once, and your agent calls it.

Permission scoping

Permission scoping

TfL selects live data through path and query parameters that identify lines and stops rather than an account resource, so you limit the agent to the operations it needs, such as planning a journey or reading line status. Broader operations like arrivals or BikePoint lookups are only available if you include them in the allowed set.

Credential management

Credential isolation

Your TfL app_id and app_key are stored once, encrypted, by your own Jentic One instance and appended to every call at execution time. They never enter the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'plan a London journey' or 'next tube arrivals at a stop', and Jentic returns the matching TfL operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

TfL API (legacy)

→

The legacy api.tfl.gov.uk surface — superseded by api.digital.tfl.gov.uk but still in use in some integrations.

Choose the legacy host only when an existing integration depends on its quirks; new work should target api.digital.tfl.gov.uk.

Alternative

Transit App API

→

Transit App provides multi-city public-transport data including London — useful when you need consistent coverage beyond TfL.

Choose Transit when the agent needs the same shape of arrivals data across multiple cities, not just London.

Complementary

TomTom API

→

TomTom adds road traffic and routing for car journeys that TfL's tube/bus focus does not cover.

Use TomTom when the trip includes private-car or taxi routing alongside TfL public-transport segments.

FAQs

Specific to using Transport for London Unified API through Jentic.

Why is there no official OpenAPI spec for Transport for London Unified API?

TfL publishes Swagger UI for the Unified API but does not maintain a downloadable OpenAPI specification suitable for code generation. Jentic generates and maintains this spec so that AI agents and developers can call Transport for London Unified API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.

What authentication does the TfL Unified API use?

TfL uses paired API-key query parameters: `app_id` and `app_key`, both issued from the TfL API portal. Both are appended to every request URL. Jentic stores the pair in the encrypted vault and injects them into each call so agents never embed credentials in code.

Can I plan a journey between two London locations?

Yes — GET /Journey/JourneyResults/{from}/to/{to} accepts station names, postcodes, addresses, or lat-long pairs and returns multi-leg itineraries with walking, tube, bus, and rail segments. Optional parameters include departure or arrival time, modes filter, and accessibility preferences. This is the same engine that powers the official TfL journey planner.

What are the rate limits for the TfL Unified API?

TfL applies a default per-developer rate limit of 500 requests per minute, with bursts handled via a sliding window. Heavy users can request higher limits via the TfL API portal. Standard `X-RateLimit` headers are returned on each response so agents can back off cleanly.

How do I get the next tube arrivals at a station through Jentic?

Run `pip install jentic`, search for 'tube arrivals at a stop', load the GET /Line/{ids}/Arrivals/{stopPointId} schema, and execute with the line id (for example 'victoria') and stop NaPTAN id (for example '940GZZLUKSX' for King's Cross). The response carries predicted arrival times you can rank and surface.

Does the TfL API cover National Rail or just London?

The Unified API is London-centric. It includes London Overground, Elizabeth line, DLR, tube, bus, tram, and IFS Cloud Cable Car, plus journey-planner integration with National Rail at London stations. For nationwide rail timetables outside London, pair this API with a National Rail Open Data feed.

GET STARTED

Start building with Transport for London Unified API

Explore with Jentic
View OpenAPI Document