Discover/TakeoffTimer API
live

TakeoffTimer APItakeofftimer.com

Get real-time TSA security wait times, hourly forecasts, PreCheck checkpoint status, and FAA delay alerts for US airports via the TakeoffTimer API.

This API takes change requests — .
Endpoint health
verified 2h ago
get_wait_times
1/1 passing latest checkself-healing
Endpoints
1
Updated
3h ago

What is the TakeoffTimer API?

The TakeoffTimer API exposes 1 endpoint — get_wait_times — that returns 10+ structured fields covering live TSA security wait times, hourly wait forecasts, PreCheck checkpoint open/closed status, and FAA delay alerts for any US airport. Pass a 3–4 character IATA or FAA airport code and get back current wait minutes, a labeled hourly forecast array, per-terminal checkpoint status, and active ground stop or delay alerts.

Try it
3-4 letter IATA/FAA airport code (e.g. 'BUR', 'LAX', 'JFK').
api.parse.bot/scraper/56f8ce6c-2fdc-44c8-b1c3-cdcbcbc0818b/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/56f8ce6c-2fdc-44c8-b1c3-cdcbcbc0818b/get_wait_times?airport_code=BUR' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace takeofftimer-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: TakeoffTimer SDK — get live TSA wait times for any US airport."""
from parse_apis.takeofftimer_com_api import TakeoffTimer, AirportNotFound

client = TakeoffTimer()

# Fetch live wait times for Burbank airport
try:
    bur = client.airport_waits.get(airport_code="BUR")
    print(bur.airport_code, bur.available)
    if bur.current_wait:
        print(bur.current_wait.standard_minutes, bur.current_wait.standard_description)
    for slot in bur.hourly_forecast[:3]:
        print(slot.timeslot, slot.wait_minutes)
except AirportNotFound as e:
    print("not found:", e.airport_code)

print("exercised: airport_waits.get")
All endpoints · 1 totalmissing one? ·

Returns live TSA security wait times, hourly wait forecasts, PreCheck checkpoint open/closed status, and FAA delay alerts for a given US airport. Data refreshes every few minutes from TSA sources. Airports without TSA data return available=false with empty forecast and checkpoint fields.

Input
ParamTypeDescription
airport_coderequiredstring3-4 letter IATA/FAA airport code (e.g. 'BUR', 'LAX', 'JFK').
Response
{
  "type": "object",
  "fields": {
    "source": "data source identifier",
    "available": "whether TSA wait time data is available for this airport",
    "faa_alerts": "object with ground_stops, ground_delays, and general_delays sub-objects",
    "airport_code": "IATA/FAA code of the airport",
    "current_wait": "object with current standard wait minutes, description, PreCheck availability, and timestamp; null if unavailable",
    "hourly_forecast": "array of hourly wait time predictions with timeslot label, wait_minutes, and hour number",
    "precheck_checkpoints": "object mapping terminal names to checkpoint names and their open/closed status"
  },
  "sample": {
    "data": {
      "source": "tsawaittimes",
      "available": true,
      "faa_alerts": {
        "ground_stops": {
          "reason": "",
          "end_time": ""
        },
        "ground_delays": {
          "reason": "",
          "average": ""
        },
        "general_delays": {
          "trend": "",
          "reason": ""
        }
      },
      "airport_code": "BUR",
      "current_wait": {
        "timestamp": "2026-07-23T20:02:37.484Z",
        "standard_minutes": 9,
        "precheck_available": true,
        "standard_description": "8 minutes and 30 seconds"
      },
      "hourly_forecast": [
        {
          "hour": 4,
          "timeslot": "4 am - 5 am",
          "wait_minutes": 12.3
        },
        {
          "hour": 5,
          "timeslot": "5 am - 6 am",
          "wait_minutes": 13.1
        }
      ],
      "precheck_checkpoints": {
        "Terminal MAIN": {
          "Checkpoint 1": "Open"
        }
      }
    },
    "status": "success"
  }
}

About the TakeoffTimer API

What the API Returns

The get_wait_times endpoint accepts a single required parameter, airport_code, which takes any standard IATA or FAA 3–4 letter code (e.g. BUR, LAX, JFK). The response includes a top-level available boolean that signals whether TSA wait data exists for that airport. When available is true, the current_wait object provides the current standard lane wait in minutes, a human-readable description, a PreCheck availability flag, and a timestamp for the reading. Data refreshes every few minutes.

Hourly Forecasts and Checkpoint Status

The hourly_forecast array delivers per-hour wait time predictions, each entry carrying a timeslot label, wait_minutes, and an hour number — useful for displaying a day-view chart or surfacing the lightest travel window. The precheck_checkpoints object maps terminal names to individual checkpoint names and their current open/closed status, letting you show travelers exactly which lanes are operational before they leave for the airport.

FAA Alerts

The faa_alerts object contains three sub-objects — ground_stops, ground_delays, and general_delays — drawn from FAA advisory data. These alerts are airport-scoped, so you can surface active ground stops or ATCSCC delay programs alongside the TSA wait information in a single API call. Airports without TSA coverage return available: false with empty hourly_forecast and precheck_checkpoints fields rather than an error, so your integration handles unsupported airports gracefully.

Reliability & maintenanceVerified

The TakeoffTimer API is a managed, monitored endpoint for takeofftimer.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when takeofftimer.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official takeofftimer.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
2h ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Show departing passengers the current TSA wait time and PreCheck lane status on a flight itinerary page.
  • Build a 'best time to arrive' widget using the hourly_forecast array to surface low-wait windows.
  • Alert travelers to active FAA ground stops or ground delays at their departure airport before they leave home.
  • Display per-terminal PreCheck checkpoint open/closed status in an airport map or wayfinding app.
  • Power a dashboard that monitors TSA wait trends across multiple US airports simultaneously.
  • Send push notifications when current wait minutes exceed a user-defined threshold at their home airport.
  • Enrich travel booking confirmation emails with real-time security wait and delay advisory data.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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 TakeoffTimer have an official developer API?+
TakeoffTimer does not publish an official developer API or documented public endpoints. The Parse API provides structured programmatic access to the same wait time and forecast data shown on takeofftimer.com.
What does `get_wait_times` return for an airport that has no TSA data?+
The endpoint returns a response with available: false. The current_wait field is null, hourly_forecast is an empty array, and precheck_checkpoints is an empty object. FAA alert fields are still included. This means your code never needs to handle a hard error for unsupported airports — just check available before rendering wait data.
How current is the wait time data?+
The current_wait object includes a timestamp field you can use to determine data age. The underlying source refreshes every few minutes, so the data is near-real-time but not guaranteed to reflect instantaneous conditions at the checkpoint.
Does the API cover international airports or non-US TSA checkpoints?+
Coverage is limited to US airports that publish TSA wait time data. International airports and non-TSA security checkpoints are not covered. You can fork this API on Parse and revise it to add an endpoint targeting a different data source if you need international coverage.
Can I retrieve historical TSA wait times or multi-day forecast data?+
The API currently returns live current wait data and a same-day hourly forecast. Historical wait records and multi-day outlooks are not exposed. You can fork this API on Parse and revise it to add a historical data endpoint if that capability is available from another source.
Page content last updated . Spec covers 1 endpoint from takeofftimer.com.
Related APIs in TravelSee all →
jfkairport.com API
Access data from jfkairport.com.
flysfo.com API
Access data from flysfo.com.
nasstatus.faa.gov API
Monitor real-time FAA airspace conditions to check airport delays, closures, ground stops, and active events affecting flights. Track forecasts, reroutes, and flow program changes to stay informed about current and upcoming disruptions across the National Airspace System.
queue-times.com API
Monitor real-time wait times, crowd levels, and historical data across 130+ theme parks worldwide to plan your visits and avoid peak hours. Get daily statistics and predictions to make informed decisions about when and where to experience attractions with minimal wait times.
flightradar24.com API
Track live flights worldwide, view real-time airport schedules, and search for specific flights with detailed information about aircraft and routes. Monitor the most tracked flights and get comprehensive airport details including gates, terminals, and operational status.
flylax.com API
Access data from flylax.com.
aopa.org API
Search for general aviation airports and access detailed information including runways, real-time weather conditions, NOTAMs, and aviation procedures—all in one place. Find upcoming aviation events and get comprehensive airport overviews to plan your flights with up-to-date data.
flightradar.com API
Track flights in real-time, search for specific flight details, and look up information about airports and airlines worldwide. Monitor nearby aircraft by location, identify which airlines operate specific routes, and get comprehensive aviation data all in one place.