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

# Counts

> Aircraft and station counts from the live snapshot. 503 if the snapshot is older than 60 seconds.



## OpenAPI

````yaml /openapi.json get /v1/now
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/now:
    get:
      tags:
        - Live
      summary: Counts
      description: >-
        Aircraft and station counts from the live snapshot. 503 if the snapshot
        is older than 60 seconds.
      operationId: now
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema: {}
              example:
                aircraft_count: 7
                aircraft_with_pos: 5
                station_count: 1
                generated_at: 1787924061
        '429':
          description: Rate limited. Per IP, 600 second window.
        '503':
          description: Live snapshot older than 60 seconds.

````