# ForgeMesh Postcode Coordinates Lookup

> ForgeMesh Postcode Coordinates Lookup is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Resolves a postal or zip code from 60+ countries into its place name, region/state, and latitude/longitude coordinates.

## Facts

- Endpoint: POST https://x402.forgemesh.io/postcode-coordinates-lookup
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-postcode-coordinates-lookup-9b2d9cb8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fqXcDzzGtLDhM3EkW7u-_

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 forgemesh-postcode-coordinates-lookup-9b2d9cb8 -d '<json body>'
```

Example prompt: What city and coordinates does postal code 77001 in the US map to?

## When to prefer this

Use this endpoint when you have a raw postal or zip code and need to resolve it to a geographic place name and coordinates — especially for shipping estimation, tax jurisdiction determination, or feeding lat/lon into downstream mapping or geo tools. Covers 60+ countries, making it suitable for international commerce use cases. Prefer over full-address geocoding APIs when only a postal code is available.

## Known failure modes

- Unknown or invalid postal code returns a clean not-found result rather than an error
- Unsupported country code may yield no result
- Malformed postal code (wrong format for the country) may not match
- Missing country field defaults to US which may be wrong for international codes

## How this service works

Resolve a postal or zip code from 60+ countries into its place name, state or region, and latitude/longitude coordinates. Unknown codes return a clean not-found result. Used for shipping estimation, tax jurisdiction lookups, and turning a customer's zip code into a point on the map for downstream geo tools.

## Output

Returns the resolved place name, state or region, and latitude/longitude coordinates for the given postal code. If the code is not found, returns a clean not-found result rather than an error.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "code": {
   "type": "string",
   "description": "postal code, e.g. 77001"
  },
  "country": {
   "type": "string",
   "description": "2-letter country, default us"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "places": [
    {
     "state": "Texas",
     "latitude": "29.7522",
     "longitude": "-95.3595",
     "place name": "Houston"
    }
   ],
   "post code": "77001"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-postcode-coordinates-lookup-9b2d9cb8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.forgemesh.io](https://www.zero.xyz/host/x402.forgemesh.io/llms.txt)
