> ## Documentation Index
> Fetch the complete documentation index at: https://docs.flightportrait.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Point

> Aircraft within radius nautical miles of a point. Radius is capped at 250. Response is the common v2 envelope (ac, now, total). Fields inside ac come from the aggregator, not the /v1/aircraft allowlist. 502 if the aggregator is down.



## OpenAPI

````yaml /openapi.json get /v2/point/{lat}/{lon}/{radius}
openapi: 3.1.0
info:
  title: FlightPortrait network API
  description: |-
    No API key. Rate limits are per IP over a 600 second window. 429 means wait.

    Data is ODbL 1.0. Credit "FlightPortrait network feeders".
    Terms: https://flightportrait.com/network/terms
  version: 1.0.0
servers:
  - url: https://data.flightportrait.com
security: []
tags:
  - name: Live
    description: What the network hears now.
  - name: History
    description: Observed legs and routes.
  - name: Stations
    description: Feeder roster.
  - name: Reference
    description: Aircraft, airlines, airports, types.
  - name: Meta
    description: Index and health.
paths:
  /v2/point/{lat}/{lon}/{radius}:
    get:
      tags:
        - Live
      summary: Point
      description: >-
        Aircraft within radius nautical miles of a point. Radius is capped at
        250. Response is the common v2 envelope (ac, now, total). Fields inside
        ac come from the aggregator, not the /v1/aircraft allowlist. 502 if the
        aggregator is down.
      operationId: point
      parameters:
        - name: lat
          in: path
          required: true
          schema:
            type: number
            description: Latitude, degrees.
            title: Lat
          description: Latitude, degrees.
        - name: lon
          in: path
          required: true
          schema:
            type: number
            description: Longitude, degrees.
            title: Lon
          description: Longitude, degrees.
        - name: radius
          in: path
          required: true
          schema:
            type: number
            description: Radius in nautical miles. Capped at 250.
            title: Radius
          description: Radius in nautical miles. Capped at 250.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema: {}
              example:
                ac:
                  - hex: 76cd06
                    flight: SIA123
                    lat: 1.5
                    lon: 103.8
                msg: No error
                now: 1787924061
                total: 1
                ctime: 1787924061
                ptime: 12.4
        '422':
          description: Invalid path.
        '429':
          description: Rate limited. Per IP, 600 second window.
        '502':
          description: Aggregator unavailable.

````