$0.002
per call · USD Coin on Base
ManyFish location resolver for reverse geocoding. Convert latitude and longitude into a normalized address, structured address components, IANA time zone, and current UTC offset.
Endpoint
POST https://manyfish-seller.redcliff-d7368db1.westus2.azurecontainerapps.io/api/v1/maps/reverse-geocode2
Calls / 30d
1
Unique payers / 30d
Sep 2
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://manyfish-seller.redcliff-d7368db1.westus2.azurecontainerapps.io/api/v1/maps/reverse-geocode", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
"language": "en-US",
"latitude": 47.6205,
"longitude": -122.3493
}),
});
const data = await res.json();curl -X POST \
"https://manyfish-seller.redcliff-d7368db1.westus2.azurecontainerapps.io/api/v1/maps/reverse-geocode" \
-H "Content-Type: application/json" \
-d '{"language":"en-US","latitude":47.6205,"longitude":-122.3493}' \
-H "X-PAYMENT: <signed x402 payment>"Example response
{
"coordinates": {
"latitude": 47.6205,
"longitude": -122.3493
},
"count": 1,
"results": [
{
"addressLine": "400 Broad St",
"adminDistrict": "Washington",
"adminDistrict2": "King County",
"adminDistrictCode": "WA",
"confidence": "High",
"country": "United States",
"countryCode": "US",
"formattedAddress": "400 Broad St, Seattle, WA 98109, United States",
"latitude": 47.6205,
"locality": "Seattle",
"longitude": -122.3493,
"matchCodes": [
"Good"
],
"postalCode": "98109",
"streetName": "Broad St",
"streetNumber": "400",
"timeZone": "America/Los_Angeles",
"type": "Address",
"utcOffset": "-07:00"
}
],
"utcOffsetAt": "2026-08-31T20:15:00.000Z"
}Payment details
0x9cd3f0d8a73a9a87f752f09d220652dc7de398ccUSD Coin · 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913Is this your API?
Pin it to the top of Data & Enrichment and the homepage with a featured placement.
More from Azurecontainerapps & similar services
Azurecontainerapps · Image Objects
manyfish-seller.redcliff-d7368db1.westus2.azurecontainerapps.io
Locate objects in a supplied image with tags, confidence scores, and bounding boxes.
Azurecontainerapps · Image Analyze
manyfish-seller.redcliff-d7368db1.westus2.azurecontainerapps.io
Return a caption, visual tags, and located objects for a supplied image.
Azurecontainerapps · Image Caption
manyfish-seller.redcliff-d7368db1.westus2.azurecontainerapps.io
Generate one English sentence describing a supplied image.