NewAgents Just Need APIs — Benchmarking three ways to give AI agents web access: read the writeup →
endpoints/flights
Endpoint·api.agent-data.dev/v1/flights

Flight Information.

Live flight status and position, airport operational conditions and weather, and point-to-point fare search.

Example response

GET /v1/flights/UA237/status?date=2026-03-31&include_position=true
Sample
{
  "meta": {
    "request_id": "6e9a6b3b6a774b9984f6f4fdfe4e8abc",
    "resource": "flight_status",
    "data_freshness": "2026-03-31T14:22:00Z",
    "cache": {
      "hit": false,
      "ttl_seconds": 120
    }
  },
  "data": {
    "flight_number": "UA237",
    "airline": {
      "iata": "UA",
      "name": "United Airlines"
    },
    "status": "in_air",
    "status_detail": "22 min late — thunderstorms near destination",
    "departure": {
      "airport_iata": "SFO",
      "scheduled_local": "2026-03-31T08:05:00-07:00",
      "actual_local": "2026-03-31T08:29:00-07:00",
      "delay_minutes": 24
    },
    "arrival": {
      "airport_iata": "EWR",
      "scheduled_local": "2026-03-31T16:29:00-04:00",
      "estimated_local": "2026-03-31T16:44:00-04:00",
      "delay_minutes": 15
    },
    "position": {
      "latitude": 39.8561,
      "longitude": -98.3456,
      "altitude_ft": 36000,
      "speed_knots": 487,
      "heading": 82,
      "updated_at": "2026-03-31T14:21:52+00:00"
    },
    "aircraft": {
      "type": "Boeing 737-900"
    },
    "data_confidence": "medium"
  },
  "warnings": [
    {
      "code": "missing_gate_data",
      "message": "Gate or terminal details were unavailable."
    }
  ]
}

What you can build

Price tracker

Keep an eye on prices for Thanksgiving flights home and ping me when they drop below $400.

Booking support

Find me the earliest flight home from Newark tonight.

Pickup timing

My mom's flying in on AA1420 — when should I leave to get her?

Coverage

Fare search

Find flight options between airports with flexible search controls for trip type, cabin, passengers, sorting, and connections.

Flight intelligence

Resolve a specific flight on a given day and surface its latest status and tracking data.

Airport intelligence

Retrieve airport metadata and live board activity for departures, arrivals, and operational conditions. Currently, U.S. airports only.

Get started