# Tokenguard Ground Elevation Lookup

> Tokenguard Ground Elevation Lookup is a paid API for AI agents from eltociear-tokenguard.hf.space, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns ground elevation in metres above sea level for a given place name or latitude/longitude coordinate pair

## Facts

- Endpoint: GET https://eltociear-tokenguard.hf.space/world/elevation
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tokenguard-ground-elevation-lookup-771720eb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dJAAte4nwT9WEkZS61z1a

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 tokenguard-ground-elevation-lookup-771720eb
```

Example prompt: What is the ground elevation in metres above sea level for Denver, Colorado?

## When to prefer this

Use this endpoint when you need a quick, single-call elevation lookup for either a human-readable place name or a precise coordinate pair and want the result in metres above sea level. It is ideal for geospatial enrichment pipelines, drone or aviation altitude planning, hiking or outdoor activity tools, and any scenario where terrain height is needed without standing up a full DEM (Digital Elevation Model) infrastructure. Prefer it over a generic geocoding API when elevation — not just coordinates — is the primary output required.

## Known failure modes

- Unrecognisable or misspelled place name fails geocoding — returns error or null elevation
- Coordinates outside valid lat/lon range (-90 to 90, -180 to 180) may return an error
- Ocean or open-water coordinates may return 0 or a sea-level value rather than bathymetric depth
- Rate limiting or payment failure (x402) causes a 402 Payment Required response
- Ambiguous place name (e.g. 'Springfield') may resolve to an unexpected location

## How this service works

How high above sea level is this point? Ground elevation in metres for a place name or a coordinate pair

## Output

A numeric ground elevation value in metres above sea level corresponding to the queried place name (after geocoding) or coordinate pair. The response indicates how high the surface of the earth is at that point.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "latitude": {
   "type": "number",
   "description": "Latitude (use instead of location)"
  },
  "location": {
   "type": "string",
   "description": "Place name, e.g. 'Tokyo' — geocoded for you"
  },
  "longitude": {
   "type": "number",
   "description": "Longitude (use instead of location)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "latitude": 35.68,
  "location": "Tokyo, Japan",
  "longitude": 139.69,
  "elevation_m": 38
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tokenguard-ground-elevation-lookup-771720eb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from eltociear-tokenguard.hf.space](https://www.zero.xyz/host/eltociear-tokenguard.hf.space/llms.txt)
