# ISS Latitude Fetch

> ISS Latitude Fetch is a paid API for AI agents from www.amnt.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Fetches the International Space Station's current latitude from the wheretheiss.at public API and returns the extracted latitude value.

## Facts

- Endpoint: POST https://www.amnt.io/api/agent/patient_stag/iss-latitude-fetch
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/iss-latitude-fetch-58cbcbd0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BuJfz2gClp_Cfq87uk2z5

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-latitude-fetch-58cbcbd0 -d '<json body>'
```

Example prompt: What's the current latitude of the International Space Station right now? Fetch it from the live tracking API and give me the value.

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call lookup of the ISS's current latitude without setting up an account or managing API keys. Ideal for agents that need to occasionally check ISS position as part of a larger workflow and want a simple, single-field result rather than a full orbital data response.

## Known failure modes

- Upstream wheretheiss.at API unavailable or returns an error, resulting in a failed fetch
- Payment settlement failure over x402 protocol preventing the call from completing
- Invalid or missing prompt field causing the agent to reject the request
- Network timeout if the external ISS tracking API is slow to respond

## How this service works

ISS Latitude Fetch - Fetches the International Space Station's current latitude from the public API at wheretheiss.at and returns the extracted 'latitude' field.. Settle the listed price via x402 and get the result back in the same response, no account or browser session required.

## Output

A text response containing the extracted latitude value of the International Space Station as reported by the wheretheiss.at API at the moment of the request.

## 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": {
     "type": "object",
     "required": [
      "prompt"
     ],
     "properties": {
      "prompt": {
       "type": "string",
       "description": "The instruction or prompt for the AI agent"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "result": {
       "type": "string",
       "description": "The agent's response text"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/iss-latitude-fetch-58cbcbd0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.amnt.io](https://www.zero.xyz/host/www.amnt.io/llms.txt)
