National Geospatial-Intelligence Agency Orbit API

Short-term orbit prediction products.

Operations 2

GET /api/orbit/9-day Download 9-day orbit prediction #
GET /api/orbit/30-day Download 30-day orbit prediction #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/national-geospatial-intelligence-agency-orbit-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

national-geospatial-intelligence-agency-orbit-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: NGA Earth-Info REST Clock Orbit API
  description: The National Geospatial-Intelligence Agency (NGA) Earth-Info REST API provides programmatic access to GPS ephemeris products, Earth Orientation Parameter Predictions (EOPP), Navdata clock state files, and short-term orbit prediction products published by the NGA Office of Geomatics. Authoritative interactive documentation is published in OpenAPI format on the Earth-Info portal.
  version: 1.0.0
  contact:
    name: NGA Office of Geomatics
    email: geomatics@nga.mil
    url: https://earth-info.nga.mil/
servers:
- url: https://earth-info.nga.mil
  description: NGA Earth-Info production endpoint
tags:
- name: Orbit
  description: Short-term orbit prediction products.
paths:
  /api/orbit/9-day:
    get:
      tags:
      - Orbit
      summary: Download 9-day orbit prediction
      description: Returns the 9-day GPS orbit prediction product for the specified date.
      operationId: getOrbit9Day
      parameters:
      - name: date
        in: query
        required: true
        description: Target date in YYYY-MM-DD format.
        schema:
          type: string
          format: date
      responses:
        '200':
          description: 9-day orbit prediction file.
          content:
            application/octet-stream:
              schema:
                type: string
                format: binary
  /api/orbit/30-day:
    get:
      tags:
      - Orbit
      summary: Download 30-day orbit prediction
      description: Returns the 30-day GPS orbit prediction product for the specified date.
      operationId: getOrbit30Day
      parameters:
      - name: date
        in: query
        required: true
        description: Target date in YYYY-MM-DD format.
        schema:
          type: string
          format: date
      responses:
        '200':
          description: 30-day orbit prediction file.
          content:
            application/octet-stream:
              schema:
                type: string
                format: binary