# Takeofftimer — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Access data from takeofftimer.com.

**Category:** Travel | **Website:** [www.takeofftimer.com/airports/BUR](https://www.takeofftimer.com/airports/BUR) | **Docs:** [parse.bot/marketplace/19cad99c-40ca-441c-96b6-0ffd7df168bd/takeofftimer-com-api](https://parse.bot/marketplace/19cad99c-40ca-441c-96b6-0ffd7df168bd/takeofftimer-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-takeofftimer-com-api-19cad99c/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_wait_times

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `airport_code` | string | Yes | 3-4 letter IATA/FAA airport code (e.g. 'BUR', 'LAX', 'JFK'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-takeofftimer-com-api-19cad99c/get_wait_times \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"airport_code":"<string>"}'
```
