{
  "openapi": "3.0.1",
  "info": {
    "title": "Live Flight Tracker",
    "description": "Track live aircraft positions, flight status, routes, and airport movements without a third-party API key. Export coordinates, altitude, speed, times, delays, airports, and source links.",
    "version": "0.0",
    "x-build-id": "ROfvmVMlUZy5fW7w9"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/maximedupre~flight-tracker/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-maximedupre-flight-tracker",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/maximedupre~flight-tracker/runs": {
      "post": {
        "operationId": "runs-sync-maximedupre-flight-tracker",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/maximedupre~flight-tracker/run-sync": {
      "post": {
        "operationId": "run-sync-maximedupre-flight-tracker",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "required": [
          "target"
        ],
        "properties": {
          "target": {
            "title": "Target",
            "enum": [
              "liveFlights",
              "worldwideSnapshot",
              "regionSnapshot",
              "boundingBox",
              "flightStatus",
              "route",
              "airportMovements"
            ],
            "type": "string",
            "description": "Choose the flight or aircraft view to track.",
            "default": "worldwideSnapshot"
          },
          "region": {
            "title": "Region",
            "enum": [
              "africa",
              "asia",
              "europe",
              "middleEast",
              "northAmerica",
              "oceania",
              "southAmerica"
            ],
            "type": "string",
            "description": "For Region snapshot, choose the part of the world to scan."
          },
          "bounds": {
            "title": "Geographic bounds",
            "required": [
              "south",
              "west",
              "north",
              "east"
            ],
            "type": "object",
            "description": "For Bounding box, set the south, west, north, and east edges in decimal degrees.",
            "properties": {
              "south": {
                "title": "South latitude",
                "type": "number",
                "description": "The southern edge, from -90 to 90.",
                "minimum": -90,
                "maximum": 90
              },
              "west": {
                "title": "West longitude",
                "type": "number",
                "description": "The western edge, from -180 to 180.",
                "minimum": -180,
                "maximum": 180
              },
              "north": {
                "title": "North latitude",
                "type": "number",
                "description": "The northern edge, from -90 to 90.",
                "minimum": -90,
                "maximum": 90
              },
              "east": {
                "title": "East longitude",
                "type": "number",
                "description": "The eastern edge, from -180 to 180.",
                "minimum": -180,
                "maximum": 180
              }
            }
          },
          "origin": {
            "title": "Origin airport",
            "pattern": "^[A-Za-z]{3}$",
            "type": "string",
            "description": "For Route, enter the origin IATA airport code, such as JFK."
          },
          "destination": {
            "title": "Destination airport",
            "pattern": "^[A-Za-z]{3}$",
            "type": "string",
            "description": "For Route, enter the destination IATA airport code, such as LAX."
          },
          "airports": {
            "title": "Airports",
            "minItems": 1,
            "type": "array",
            "description": "For Airport movements, enter one or more IATA airport codes, such as JFK.",
            "items": {
              "type": "string",
              "pattern": "^[A-Za-z]{3}$"
            }
          },
          "movementDirection": {
            "title": "Movement direction",
            "enum": [
              "arrivals",
              "departures"
            ],
            "type": "string",
            "description": "For Airport movements, choose arrivals or departures."
          },
          "flightNumbers": {
            "title": "Flight numbers or callsigns",
            "minItems": 1,
            "type": "array",
            "description": "For Live flights and Flight status, enter one or more IATA flight numbers or ICAO callsigns, such as AA100 or AAL100.",
            "items": {
              "type": "string",
              "minLength": 2
            }
          },
          "flightDate": {
            "title": "Flight date",
            "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
            "type": "string",
            "description": "For Flight status and Route, choose the scheduled departure date."
          },
          "aircraftState": {
            "title": "Aircraft state",
            "enum": [
              "all",
              "airborne",
              "onGround"
            ],
            "type": "string",
            "description": "For Worldwide snapshot, Region snapshot, and Bounding box, keep all aircraft, only airborne aircraft, or only aircraft on the ground.",
            "default": "airborne"
          },
          "requireUsableCoordinates": {
            "title": "Require usable coordinates",
            "type": "boolean",
            "description": "For Worldwide snapshot, Region snapshot, and Bounding box, keep only aircraft with a usable latitude and longitude.",
            "default": true
          },
          "icao24": {
            "title": "ICAO24 aircraft IDs",
            "type": "array",
            "description": "For Live flights, look up these six-character ICAO24 aircraft IDs. For Worldwide snapshot, Region snapshot, and Bounding box, use them to filter the snapshot. Leave this empty to include every aircraft in a snapshot.",
            "items": {
              "type": "string",
              "pattern": "^[A-Fa-f0-9]{6}$"
            }
          },
          "statuses": {
            "title": "Flight statuses",
            "type": "array",
            "description": "For Flight status and Route, keep only the selected statuses. Leave this empty to keep every status.",
            "items": {
              "type": "string",
              "enum": [
                "scheduled",
                "onTime",
                "delayed",
                "cancelled",
                "diverted",
                "landed",
                "enRoute"
              ],
              "enumTitles": [
                "Scheduled",
                "On time",
                "Delayed",
                "Cancelled",
                "Diverted",
                "Landed",
                "En route"
              ]
            }
          },
          "minDelayMinutes": {
            "title": "Minimum delay in minutes",
            "minimum": 1,
            "type": "integer",
            "description": "For Flight status and Route, keep flights delayed by at least this many minutes. Leave this empty to allow any delay."
          },
          "maxItems": {
            "title": "Maximum results",
            "minimum": 1,
            "type": "integer",
            "description": "Stop after this many results. Leave this empty to return all available results until the source is exhausted.",
            "default": 10
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}