AeroFarr
Data APIData ProductsDevelopersPricingHow to BuySign In
Get started
Data APIData ProductsDevelopersPricingHow to BuySign In
Developers

Build on the AeroFarr API.

Authenticate with an API key, call the prediction and analytics endpoints, and track usage against your tier's credits and rate limits. Create a free account and issue a sandbox key to get started, no sales conversation required.

Get your sandbox keyFull API reference

Already have an account? Sign in and open your API keys. See what each plan includes on the pricing page.

Live network coverage
3,000+ airports tracked5 FAA SWIM feedsSub-minute update cadence
Documentation

Authentication in one header.

Every request carries your key in the X-API-Key header. Sign up and open your account's API key page to issue a sandbox key, or contact info@zorost.com for a production tier.

Quickstart

Your first prediction call.

curl -X POST https://api.aerofarr.com/v1/predict \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "features": {
      "origin_congestion": 0.42,
      "weather_severity": 0.1,
      "scheduled_hour": 14
    }
  }'
import requests

response = requests.post(
    "https://api.aerofarr.com/v1/predict",
    headers={"X-API-Key": "YOUR_API_KEY"},
    json={
        "features": {
            "origin_congestion": 0.42,
            "weather_severity": 0.1,
            "scheduled_hour": 14,
        }
    },
)
print(response.json())
Quickstart

Query an analytics dataset.

Analytics tables (airport, airline, and route performance, schedules, weather impact, and more) are documented in the dataset catalog.

import requests

response = requests.get(
    "https://api.aerofarr.com/v2/analytics/airport-daily",
    headers={"X-API-Key": "YOUR_API_KEY"},
    params={"airport": "KATL", "limit": 30},
)
print(response.json())
Metering

Credits and rate limits.

Each tier includes a monthly call allowance, a token allowance for metered endpoints, and a per-minute rate limit. Figures below are read live from the platform.

Lakehouse readyDatabricks

Query AeroFarr inside your Databricks lakehouse.

Every dataset is delivered as Parquet over S3-compatible storage or through the REST API. Teams register AeroFarr data as external tables in Databricks Unity Catalog, or load it straight into Delta tables, and join it with their own operations data in place. Step-by-step integration guides ship with every plan.

  1. 1

    Issue a key

    Create an account and issue an API key from your developer dashboard. The sandbox tier is free and needs no card.

  2. 2

    Choose your delivery path

    Grant S3-compatible delivery for Parquet exports of full datasets, or call the REST API for row-level queries.

  3. 3

    Register external tables

    Point Databricks Unity Catalog at the delivered Parquet to register external tables, or load straight into Delta tables.

Read the integration guide→

Need more?

The full interactive reference, including every request and response schema, is at api.aerofarr.com/v1/docs. Check system status or review the acceptable use policy before integrating.

Data APIData ProductsDevelopersPricingHow to BuySystem StatusSupportTermsPrivacyAcceptable Use

© 2026 Zorost Intelligence LLC. AeroFarr is a product of Zorost Intelligence LLC.