$0.002
per call · USD Coin on Base
Worldwide reverse geocoding for agents. Convert latitude and longitude into a normalized address, locality, administrative area, postcode, and country metadata.
Endpoint
POST https://sat.ipintel.ai/coordinates-to-address1
Calls / 30d
1
Unique payers / 30d
Aug 13
Last called
exact
Payment scheme
Call this service
import { wrapFetchWithPayment } from "@x402/fetch";
import { privateKeyToAccount } from "viem/accounts";
const account = privateKeyToAccount(process.env.PRIVATE_KEY);
const fetchWithPay = wrapFetchWithPayment(fetch, account);
const res = await fetchWithPay("https://sat.ipintel.ai/coordinates-to-address", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
"language": "en",
"lat": 48.8584,
"lon": 2.2945
}),
});
const data = await res.json();curl -X POST \
"https://sat.ipintel.ai/coordinates-to-address" \
-H "Content-Type: application/json" \
-d '{"language":"en","lat":48.8584,"lon":2.2945}' \
-H "X-PAYMENT: <signed x402 payment>"Example response
{
"cached": false,
"ok": true,
"provider": "geoapify",
"result": {
"city": "Paris",
"country_code": "FR",
"formatted_address": "Eiffel Tower, 5 Avenue Anatole France, 75007 Paris, France",
"lat": 48.8584,
"lon": 2.2945
},
"tool": "coordinates-to-address"
}Payment details
0x0550779cfbc832657a8bb46bac9f359a5ad038b8USD Coin · 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913Is this your API?
Pin it to the top of Data & Enrichment and the homepage with a featured placement.
More from Satellite & GeoRisk x402 API & similar services
Satellite & GeoRisk x402 API · Satellite Observe
sat.ipintel.ai
Agent-ready satellite observations for any coordinates. Returns PNG image URLs and scene metadata for true color, vegetation, water, thermal, or radar analysis.
Satellite & GeoRisk x402 API · Address TO Coordinates
sat.ipintel.ai
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.
Satellite & GeoRisk x402 API · Location Risk
sat.ipintel.ai
Current multi-hazard intelligence for any coordinates. Finds nearby wildfire, earthquake, flood, tropical cyclone, volcano, and drought signals and returns compact deterministic risk scores without generating satellite images.