Chicago Transit Authority Arrivals API

Train arrival prediction operations

Operations 1

GET /ttarrivals.aspx Arrivals #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/chicago-transit-authority-arrivals-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

chicago-transit-authority-arrivals-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: CTA Train Tracker Arrivals API
  description: The Chicago Transit Authority Train Tracker API provides real-time train arrival predictions and run/location information for the CTA L train system. Access requires an API key issued by the CTA Developer Center.
  version: 1.0.0
  contact:
    name: CTA Developer Center
    url: https://www.transitchicago.com/developers/
  license:
    name: CTA Developer License Agreement
    url: https://www.transitchicago.com/developers/terms/
servers:
- url: http://lapi.transitchicago.com/api/1.0
  description: CTA Train Tracker production
security:
- apiKey: []
tags:
- name: Arrivals
  description: Train arrival prediction operations
paths:
  /ttarrivals.aspx:
    get:
      operationId: getArrivals
      summary: Arrivals
      description: Returns train arrival predictions for a station (mapid) or platform (stpid).
      tags:
      - Arrivals
      parameters:
      - name: key
        in: query
        required: true
        description: CTA Train Tracker API key.
        schema:
          type: string
      - name: mapid
        in: query
        description: Numeric station identifier.
        schema:
          type: string
      - name: stpid
        in: query
        description: Numeric platform stop identifier.
        schema:
          type: string
      - name: max
        in: query
        description: Maximum results to return.
        schema:
          type: integer
      - name: rt
        in: query
        description: Train route code (e.g., Red, Blue, G, Brn, P, Pink, Org, Y).
        schema:
          type: string
      - name: outputType
        in: query
        description: Response format. Defaults to XML.
        schema:
          type: string
          enum:
          - xml
          - JSON
      responses:
        '200':
          description: Arrival predictions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ArrivalsResponse'
components:
  schemas:
    Arrival:
      type: object
      properties:
        staId:
          type: string
        stpId:
          type: string
        staNm:
          type: string
        stpDe:
          type: string
        rn:
          type: string
        rt:
          type: string
        destSt:
          type: string
        destNm:
          type: string
        prdt:
          type: string
        arrT:
          type: string
        isApp:
          type: string
        isSch:
          type: string
        isDly:
          type: string
        lat:
          type: string
        lon:
          type: string
        heading:
          type: string
    ArrivalsResponse:
      type: object
      properties:
        ctatt:
          type: object
          properties:
            tmst:
              type: string
            errCd:
              type: string
            errNm:
              type: string
            eta:
              type: array
              items:
                $ref: '#/components/schemas/Arrival'
  securitySchemes:
    apiKey:
      type: apiKey
      in: query
      name: key