# Suverse Elevation Lookup

> Suverse Elevation Lookup 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 ground elevation in meters for a given latitude and longitude coordinate using the Open-Meteo elevation service.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-elevation
- 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/suverse-elevation-lookup-9fb512db
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nQUHZbwhtQuHFtZFikMkK

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 suverse-elevation-lookup-9fb512db -d '<json body>'
```

Example prompt: What's the ground elevation in meters at latitude 47.6062 and longitude -122.3321?

## When to prefer this

Choose this endpoint when you need a quick, single-point elevation lookup with no API key setup, especially for mapping, drone flight planning, outdoor navigation, or terrain analysis use cases. It is ideal for AI agents that need to enrich geographic data with altitude information on-the-fly without managing authentication credentials.

## Known failure modes

- Invalid or out-of-range latitude/longitude values returning an error
- Network or upstream Open-Meteo service unavailability
- Malformed request body causing a 400 error
- Payment failure via x402 protocol resulting in a 402 response
- Coordinates over open ocean or polar extremes may return zero or unexpected values

## How this service works

Ground elevation in meters for a latitude and longitude via the Open-Meteo elevation service, no key. Returns the elevation for the point. For AI agents in mapping, terrain, drone, and outdoor planning use cases.

## Output

Returns the elevation in meters above sea level for the specified latitude and longitude coordinate, sourced from the Open-Meteo elevation dataset. The response is a numeric elevation value representing ground height at the queried point.

## 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/suverse-elevation-lookup-9fb512db/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)
