# Suverse Geo Zip Germany

> Suverse Geo Zip Germany is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Resolves a German (DE) postal code to place name, federal state, latitude, and longitude using the Zippopotam service — no API key required.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-geo-zip-germany
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-geo-zip-germany-2d64a782
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sfv4ropI9I7Xks3gAa1Zv

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-geo-zip-germany-2d64a782 -d '<json body>'
```

Example prompt: What city, state, latitude, and longitude correspond to German postal code 20095?

## When to prefer this

Choose this endpoint when you need keyless, pay-per-call geocoding specifically for German (DE) postal codes and only need place name, state, and lat/lon — ideal for agents enriching German addresses without managing API keys or subscriptions.

## Known failure modes

- Invalid or non-existent German postal code returns an error or empty result
- Non-German postcodes (e.g. UK, US) will not be resolved by this endpoint
- Network or upstream Zippopotam service unavailability causes timeout or 5xx error
- Malformed request body (missing required fields) returns a 400-style error
- Payment failure via x402 protocol blocks access

## How this service works

Resolve a German (DE) postcode to place name, state, latitude and longitude via keyless Zippopotam. For agents geocoding German addresses by postal code.

## Output

Returns the German place name (city/town), the federal state (Bundesland), latitude, and longitude corresponding to the given postal code, sourced from Zippopotam with no API key required.

## 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-geo-zip-germany-2d64a782/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)
