Expansion Proposals

The TFL network is vast, and has undergone a number of expansions and re-organisations in recent years; the opening of the Elizabeth line and the reorganising of the Overground into smaller, contiguous lines to name a few. As such, it is natural that plans to expand the network are under consideration, or at least in the pipeline, at all times. The Proposed Lines service provides access to some of these potential expansion options, as well as some supporting information on how proposals are assessed in terms of their cost to construct and the benefit to travel they provide.

Proposals are provided in a similar manner to how the TFL lines are provided - as a listing of pairs of station indexes and the travel time between the two stations. You can request them through the proposals/routes service, and this is done in much the same manner as the current TFL lines. The proposals do not have line indexes, since they are not actually part of the TFL network yet! As such, they are only identified by their names (as given below):

However; the cost of actually building the physical infrastructure, hiring additional staff, and constructing additional vehicles fluctuates across the year - this can make certain proposals more cost-effective than others depending on when construction is due to start. The web-service provides a forecast of these costs for the proposals, if told which date between 1st Jan 2026 - 31st Dec 2026 (inclusive) construction is due to start. There are three costs to consider, some of which break down into different amounts depending on the nature of the proposal:

You can request these costs through the proposals/costs service.

Querying

To query for a particular proposal: proposals/routes?route=NAME.

To query for the various costs on a particular day: proposals/costs?date=YYYY-MM-DD.

Parameters

Examples

Return format

The routes service will return a .csv file without headers, each row representing a connection between two stations on the line and the travel time between them. That is, each row has the format

station 1 index, station 2 index, time (mins)

implying that the two stations with the respective indexes are directly connected by the proposed line, and it will take time minutes to travel between them using this line.

The costs service returns a .json file of the following format:

{
    "construction-date": "YYYY-MM-DD",
    "new": numerical-value,
    "ext": numerical-value,
    "hire": numerical-value,
    "train": numerical-value,
}

The new, extension, hire and train keys contain values corresponding to the associated cost (infrastructure for new and ext, staff for hire, and procurement for train). The construction-date field just returns the date parameter that was provided to the web-service, in case the querying program requires it.