Worldwide forward geocoding for agents
Worldwide forward geocoding for agents. Convert an address, landmark, city, postcode, or place name into latitude and longitude with normalized address components and confidence metadata.
2000 (raw units)
price
10
calls / 30d
7
unique payers
2026-09-15
updated
Provider
sat.ipintel.ai · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x0550779CFBc832657A8BB46BAC9f359A5ad038B8",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "2000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"address": "Eiffel Tower, Paris, France",
"country_code": "fr",
"language": "en",
"limit": 1
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"cached": false,
"match_count": 1,
"ok": true,
"provider": "geoapify",
"results": [
{
"confidence": 0.99,
"country_code": "FR",
"formatted_address": "Eiffel Tower, 5 Avenue Anatole France, 75007 Paris, France",
"lat": 48.8584,
"lon": 2.2945
}
],
"tool": "address-to-coordinates"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"address": {
"description": "Free-form place or postal address.",
"maxLength": 500,
"minLength": 3,
"type": "string"
},
"country_code": {
"description": "Optional ISO 3166-1 alpha-2 country filter.",
"maxLength": 2,
"minLength": 2,
"type": "string"
},
"language": {
"description": "Preferred response language, for example en or es.",
"maxLength": 12,
"minLength": 2,
"type": "string"
},
"limit": {
"default": 1,
"maximum": 5,
"minimum": 1,
"type": "integer"
}
},
"required": [
"address"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"additionalProperties": true,
"properties": {
"cached": {
"type": "boolean"
},
"match_count": {
"minimum": 0,
"type": "integer"
},
"ok": {
"const": true,
"type": "boolean"
},
"results": {
"items": {
"additionalProperties": true,
"properties": {
"confidence": {
"type": "number"
},
"country_code": {
"type": "string"
},
"formatted_address": {
"type": "string"
},
"lat": {
"type": "number"
},
"lon": {
"type": "number"
}
},
"required": [
"lat",
"lon"
],
"type": "object"
},
"type": "array"
},
"tool": {
"const": "address-to-coordinates",
"type": "string"
}
},
"required": [
"ok",
"tool",
"match_count",
"results"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://sat.ipintel.ai/address-to-coordinates" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://sat.ipintel.ai/address-to-coordinates");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://sat.ipintel.ai/address-to-coordinates")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/382.json, and this resource appears in /discovery/resources and /discovery/search.