1. Schemas
Airports API v2
  • All airports
    GET
  • Airport(s) by country code.
    GET
  • Nearest airport(s) by geo coordinates.
    GET
  • Nearest airport(s) by airport id.
    GET
  • Airport by id.
    GET
  • Schemas
    • Schemas
      • AirportDetailsDto
      • AirportDto
      • AirportDtoArray
      • BadRequestResponse
      • Country
      • GeoCoordinates
      • InternalServerErrorResponse
      • Link
      • NearestAirportDto
      • NearestAirportDtoArray
  1. Schemas

NearestAirportDto

{
    "city": "string",
    "country": {
        "code": "string",
        "name": "string"
    },
    "distanceInKm": 0,
    "geoCoordinates": {
        "latitude": 0,
        "longitude": 0
    },
    "id": "string",
    "name": "string",
    "self": {
        "href": "string"
    }
}
Built with