Chicago Transit Authority Locations API

Train geolocation operations

Operations 1

GET /ttpositions.aspx Locations #

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-locations-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-locations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: CTA Train Tracker Locations 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: Locations
  description: Train geolocation operations
paths:
  /ttpositions.aspx:
    get:
      operationId: getPositions
      summary: Locations
      description: Returns the current latitude/longitude for in-service trains.
      tags:
      - Locations
      parameters:
      - name: key
        in: query
        required: true
        schema:
          type: string
      - name: rt
        in: query
        description: Comma-separated list of route codes.
        required: true
        schema:
          type: string
      - name: outputType
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Positions of in-service trains
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PositionsResponse'
components:
  schemas:
    Position:
      type: object
      properties:
        rn:
          type: string
        destSt:
          type: string
        destNm:
          type: string
        trDr:
          type: string
        nextStaId:
          type: string
        nextStaNm:
          type: string
        prdt:
          type: string
        arrT:
          type: string
        isApp:
          type: string
        isDly:
          type: string
        lat:
          type: string
        lon:
          type: string
        heading:
          type: string
    PositionsResponse:
      type: object
      properties:
        ctatt:
          type: object
          properties:
            tmst:
              type: string
            errCd:
              type: string
            errNm:
              type: string
            route:
              type: array
              items:
                type: object
                properties:
                  '@name':
                    type: string
                  train:
                    type: array
                    items:
                      $ref: '#/components/schemas/Position'
  securitySchemes:
    apiKey:
      type: apiKey
      in: query
      name: key