Up to 5 airports with scheduled service nearest a named place, ranked by real ro
Up to 5 airports with scheduled service nearest a named place, ranked by real road drive time (never a straight-line guess), with IATA and ICAO codes. airport_size 'large' keeps large airports only. Within 300 km; none in range is a 422; airports with no road route are left out. OpenStreetMap routing, OurAirports data, worldwide.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
572 msmedian answer time
$0.02listed price per call
$0.02price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://api.flipvo.com/v1/airport/nearest
| Category | Everything else |
|---|---|
| Provider host | api.flipvo.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 0 from 0 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.02 | 572 ms |
Example input (from the provider)
{
"body": {
"k": 3,
"location": "Lakeland, FL"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"description": "Every input rule lives here, so an invalid body is refused before the 402 (#118).",
"properties": {
"airport_size": {
"default": "scheduled",
"description": "scheduled: any airport with scheduled passenger service. large: OurAirports type large_airport with scheduled service.",
"enum": [
"scheduled",
"large"
],
"title": "Airport Size",
"type": "string"
},
"k": {
"default": 3,
"description": "How many airports",
"maximum": 5,
"minimum": 1,
"title": "K",
"type": "integer"
},
"location": {
"examples": [
"Lakeland, FL"
],
"maxLength": 200,
"minLength": 1,
"pattern": "\\S",
"title": "Location",
"type": "string"
},
"near": {
"anyOf": [
{
"maxLength": 200,
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Disambiguation hint, e.g. 'Florida'",
"title": "Near"
}
},
"required": [
"location"
],
"title": "NearestAirportRequest",
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"airports": {
"description": "Nearest first by road drive time",
"items": {
"properties": {
"distance_m": {
"title": "Distance M",
"type": "integer"
},
"duration_s": {
"title": "Duration S",
"type": "integer"
},
"iata": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "null for the few scheduled airports without one",
"title": "Iata"
},
"icao": {
"description": "OurAirports ident: the ICAO code where one exists",
"title": "Icao",
"type": "string"
},
"lat": {
"title": "Lat",
"type": "number"
},
"lon": {
"title": "Lon",
"type": "number"
},
"miles": {
"title": "Miles",
"type": "number"
},
"minutes": {
"title": "Minutes",
"type": "number"
},
"municipality": {
"title": "Municipality",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
},
"type": {
"description": "OurAirports type: large_airport, medium_airport, ...",
"title": "Type",
"type": "string"
}
},
"required": [
"iata",
"icao",
"name",
"municipality",
"type",
"lat",
"lon",
"distance_m",
"duration_s",
"miles",
"minutes"
],
"title": "AirportOut",
"type": "object"
},
"title": "Airports",
"type": "array"
},
"airports_data_as_of": {
"description": "When our OurAirports file was fetched (UTC)",
"title": "Airports Data As Of",
"type": "string"
},
"attribution": {
"title": "Attribution",
"type": "string"
},
"origin": {
"properties": {
"confidence": {
"title": "Confidence",
"type": "number"
},
"kind": {
"title": "Kind",
"type": "string"
},
"lat": {
"title": "Lat",
"type": "number"
},
"lon": {
"title": "Lon",
"type": "number"
},
"name": {
"title": "Name",
"type": "string"
},
"source": {
"title": "Source",
"type": "string"
}
},