# Suverse Geo Place-by-Name (US City to ZIP + Coordinates)

> Suverse Geo Place-by-Name (US City to ZIP + Coordinates) 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 US city name and state to its postal codes with latitude and longitude using the Zippopotam service.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-geo-place-by-name
- 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-place-by-name-us-city-to-zip-coordinates-3a6b5887
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_99XJBofhVAb3VDdT1csti

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-place-by-name-us-city-to-zip-coordinates-3a6b5887 -d '<json body>'
```

Example prompt: What are the ZIP codes and coordinates for Austin, Texas? Look it up by city name and state.

## When to prefer this

Use this endpoint when you need to geocode a US city by name and state rather than starting from a ZIP code, and want all associated postal codes with lat/lon in a single keyless call. Prefer it over direct Zippopotam calls when operating in an x402 payment-gated agent environment without API key management overhead.

## Known failure modes

- City name not found in Zippopotam database — returns empty or error response
- Invalid or misspelled state abbreviation — lookup fails
- City exists but has no postal codes in the dataset — empty result
- Upstream Zippopotam service unavailable — proxy returns error
- Payment failure (x402) — request not processed

## How this service works

Resolve a US city by state + name to its postal codes with latitude and longitude via keyless Zippopotam. For agents geocoding US places by name instead of ZIP.

## Output

Returns a list of ZIP/postal codes associated with the queried US city and state, each with its latitude and longitude coordinates, along with the place name and state abbreviation as confirmed by Zippopotam.

## 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-place-by-name-us-city-to-zip-coordinates-3a6b5887/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)
