# Suverse International Postal Code Lookup

> Suverse International Postal Code Lookup is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.055/call, status unknown (last checked 2026-09-14).

Returns place name, state/region, latitude, and longitude for any postal code given a 2-letter country code, powered by Zippopotam.us data.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-postal-intl-code
- Price: $0.055/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-international-postal-code-lookup-3ef662a3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TA7fsOI7oUguzDDzysvjr

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-international-postal-code-lookup-3ef662a3 -d '<json body>'
```

Example prompt: What city and region does the postal code W1A 1AA correspond to in the UK, and what are its coordinates?

## When to prefer this

Choose this endpoint when you need to resolve international postal codes to geographic data (place name, region, coordinates) across a wide range of countries including Germany, UK, Canada, Netherlands, and Spain without requiring an API key. It is ideal for address enrichment, shipping validation, or geocoding workflows where only a postal code and country code are known.

## Known failure modes

- Invalid or non-existent postal code returns an error or empty result
- Unsupported country code returns no data
- Malformed request body causes a 4xx error
- Payment not settled causes a 402 Payment Required response
- Temporary upstream Zippopotam.us unavailability causes a 5xx error

## How this service works

Look up any postal code worldwide by 2-letter country code. Returns place name, state/region, latitude, and longitude. Covers Germany, UK, Canada, Netherlands, Spain and dozens more countries. Free Zippopotam.us data.

## Output

Returns the place name (city/town), state or region name, latitude, and longitude associated with the given postal code and country code. May return multiple place entries if the postal code covers more than one locality.

## 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-international-postal-code-lookup-3ef662a3/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)
