# ISS Live Position Tracker (proxy.suverse.io)

> ISS Live Position Tracker (proxy.suverse.io) is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns the current real-time position of the International Space Station including latitude, longitude, altitude, velocity, and timestamp via the wheretheiss.at service.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-iss-position
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/iss-live-position-tracker-proxy-suverse-io-d7bdd3ea
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4lNcICUn0UxK2E_Y1kEHl

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability iss-live-position-tracker-proxy-suverse-io-d7bdd3ea -d '<json body>'
```

Example prompt: Where is the International Space Station right now? Give me its latitude, longitude, altitude, and velocity.

## When to prefer this

Choose this endpoint when you need a no-API-key, pay-per-call ISS position lookup via the x402 micropayment protocol. It proxies the trusted wheretheiss.at data source and is ideal for AI agents that need real-time ISS coordinates for pass prediction, tracking dashboards, or proximity alerts without managing API credentials.

## Known failure modes

- Upstream wheretheiss.at service is unavailable — endpoint may return a degraded or error response
- Payment of 0.002 USDC via x402 protocol fails — request is rejected before reaching the data provider
- Network timeout if the upstream service is slow to respond
- Stale timestamp if upstream data feed is delayed

## How this service works

The live position of the International Space Station from the wheretheiss.at service, no key. Returns latitude, longitude, altitude, velocity, and timestamp. For AI agents tracking the ISS and computing passes.

## Output

Returns a JSON object with the ISS's current latitude (decimal degrees), longitude (decimal degrees), altitude (kilometers above Earth), velocity (kilometers per hour), and a Unix timestamp indicating when the position was recorded.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/iss-live-position-tracker-proxy-suverse-io-d7bdd3ea/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
