# Amadeus Airport Search by Coordinates

> Amadeus Airport Search by Coordinates is a paid API for AI agents from stabletravel.dev, paid per call via x402, $0.0054/call, status unknown (last checked 2026-09-13).

Find airports near a given latitude/longitude coordinate, optionally sorted and filtered by radius.

## Facts

- Endpoint: GET https://stabletravel.dev/api/reference/airports
- Price: $0.0054/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/amadeus-1af1205c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_knGC5Lzg-6T5Mm-ffQVLX

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 amadeus-1af1205c
```

Example prompt: Find me all airports within 200km of latitude 48.8566, longitude 2.3522, sorted by distance.

## When to prefer this

Use this endpoint when you need to discover airports near a geographic point given as coordinates, especially when building travel itineraries, finding departure/arrival options for a location, or enriching location data with nearby aviation infrastructure. Prefer this over city-code hotel or flight search when the input is raw GPS coordinates rather than a known city or IATA code.

## Known failure modes

- Missing required latitude or longitude returns a 400 error
- Invalid coordinate values (out of range) may return an error or empty results
- Radius too small may return empty data array
- Payment failure via x402 returns 402 with no airport data
- Rate limiting or service unavailability returns 5xx errors

## How this service works

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

## Output

An array of airport objects near the specified coordinates, including airport codes, names, and distance/analytics metadata, paginated according to limit and offset parameters.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "sort": "distance",
   "radius": 100,
   "latitude": 40.7128,
   "longitude": -74.006
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "latitude",
      "longitude"
     ],
     "properties": {
      "sort": {
       "enum": [
        "relevance",
        "distance",
        "analytics.flights.score",
        "analytics.travelers.score"
       ],
       "type": "string"
      },
      "radius": {
       "type": "number",
       "description": "Search radius in km (default 500)"
      },
      "latitude": {
       "type": "number",
       "description": "Latitude coordinate"
      },
      "longitude": {
       "type": "number",
       "description": "Longitude coordinate"
      },
      "page[limit]": {
       "type": "number"
      },
      "page[offset]": {
       "type": "number"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "data"
     ],
     "properties": {
      "data": {
       "type": "array",
       "items": {}
      },
      "meta": {}
     },
     "additionalProperties": false
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "name": "JOHN F. KENNEDY INTL",
    "type": "location",
    "address": {
     "cityName": "NEW YORK",
     "countryCode": "US"
    },
    "geoCode": {
     "latitude": 40.6413,
     "longitude": -73.7781
    },
    "subType": "AIRPORT",
    "iataCode": "JFK"
   }
  ],
  "meta": {
   "count": 1
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/amadeus-1af1205c/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)
