# StableTravel FlightAware Airport Flight Counts

> StableTravel FlightAware Airport Flight Counts is a paid API for AI agents from stabletravel.dev, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-13).

Returns counts of enroute, departed, scheduled arrival, and scheduled departure flights for a specific airport using FlightAware data.

## Facts

- Endpoint: GET https://stabletravel.dev/api/flightaware/airports/id/flights/counts
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stabletravel-flightaware-airport-flight-counts-0f6c11ca
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VlaKjDciUFqnGzL9HfH9A

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability stabletravel-flightaware-airport-flight-counts-0f6c11ca
```

Example prompt: How many flights are currently enroute, departed, and scheduled to arrive or depart at KJFK right now?

## When to prefer this

Use this endpoint when you need a quick numeric summary of flight activity at a specific airport — enroute, departed, and scheduled counts — rather than full flight details or lists. Ideal for dashboards, busyness checks, or monitoring airport traffic volume without needing individual flight records.

## Known failure modes

- Invalid or unrecognized airport ID returns an error or empty response
- Payment failure (402) if USDC payment is not attached or insufficient
- Rate limiting if too many requests are made in a short period
- Airport code not found in FlightAware data returns null or error

## How this service works

Pay-per-request access to flights, award availability, hotels, activities, and transfers. No auth, no subscriptions.

## Output

A JSON object with four integer fields: enroute (flights currently in the air headed to or from the airport), departed (flights that have already departed), scheduled_arrivals (upcoming scheduled arriving flights), and scheduled_departures (upcoming scheduled departing flights).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "enroute": 45,
  "departed": 120,
  "scheduled_arrivals": 180,
  "scheduled_departures": 200
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stabletravel-flightaware-airport-flight-counts-0f6c11ca/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stabletravel.dev](https://www.zero.xyz/host/stabletravel.dev/llms.txt)
