> ## 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.

# Roster

> Public feeder list. Locations rounded to about 11 km. IPs are not stored.



## OpenAPI

````yaml /openapi.json get /v1/stations
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:
  /v1/stations:
    get:
      tags:
        - Stations
      summary: Roster
      description: >-
        Public feeder list. Locations rounded to about 11 km. IPs are not
        stored.
      operationId: stations
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema: {}
              example:
                stations:
                  - id: fp-a1b2c3d4e5
                    coarse_lat: 1.4
                    coarse_lon: 103.8
                    first_seen: '2026-08-01T00:00:00+00:00'
                    last_seen: '2026-08-29T12:00:00+00:00'
                    online: true
        '429':
          description: Rate limited. Per IP, 600 second window.

````