Try with $0.050 in free shared credit once per wallet
Try with $0.050 in free shared credit once per wallet. No deposit or on-chain transaction; wallet sign-in required. Credit, daily budget and availability apply. Geocode an address or place name into latitude, longitude, normalized address, IANA time zone and current UTC offset. Use for location lookup and scheduling across time zones. Paid price: $0.014. Docs: https://manyfish-seller.redcliff-d7368db1.westus2.azurecontainerapps.io/apis/geocode#quickstart.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://manyfish-seller.redcliff-d7368db1.westus2.azurecontainerapps.io/api/v1/maps/geocode
| Category | Market data |
|---|---|
| Provider host | manyfish-seller.redcliff-d7368db1.westus2.azurecontainerapps.io |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 4 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.014 | 562 ms |
Example input (from the provider)
{
"body": {
"language": "en-US",
"limit": 3,
"query": "Space Needle, Seattle"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"dependentRequired": {
"biasLatitude": [
"biasLongitude"
],
"biasLongitude": [
"biasLatitude"
]
},
"properties": {
"biasLatitude": {
"maximum": 90,
"minimum": -90,
"type": "number"
},
"biasLongitude": {
"maximum": 180,
"minimum": -180,
"type": "number"
},
"language": {
"maxLength": 35,
"minLength": 2,
"pattern": "^[A-Za-z]{2,3}(?:-[A-Za-z0-9]{2,8})*$",
"type": "string"
},
"limit": {
"maximum": 5,
"minimum": 1,
"type": "integer"
},
"query": {
"minLength": 1,
"pattern": ".*\\S.*",
"type": "string"
}
},
"required": [
"query"
],
"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": false,
"properties": {
"count": {
"minimum": 0,
"type": "integer"
},
"query": {
"type": "string"
},
"results": {
"items": {
"additionalProperties": false,
"properties": {
"addressLine": {
"type": [
"string",
"null"
]
},
"adminDistrict": {
"type": [
"string",
"null"
]
},
"adminDistrict2": {
"type": [
"string",
"null"
]
},
"adminDistrictCode": {
"type": [
"string",
"null"
]
},
"confidence": {
"type": [
"string",
"null"
]
},
"country": {
"type": [
"string",
"null"
]
},
"countryCode": {
"type": [
"string",
"null"
]
},
"formattedAddress": {
"type": [
"string",
"null"
]
},
"latitude": {
"type": [
"number",
"null"
]
},
"locality": {
"type": [
"string",
"null"
]
},
"longitude": {
"type": [
"number",
"null"
]
},
"matchCodes": {
"type": "array"
},
"postalCode": {
"type": [
"string",
"null"
]
},
"streetName": {
"type": [
"string",
"null"
]
},
"streetNumber": {
"type": [
"string",
"null"
]
},
"timeZone": {
"type": [
"string",
"null"
]
},
"type": {
"type": [
"string",
"null"
]
},
"utcOffset": {
"type": [
"string",
"null"
]
}
},
"required": [
"latitude",
"longitude",
"formattedAddress",
"addressLine",
"streetNumber",
"streetName",
"locality",
"postalCode",
"adminDistrict",
"adminDistrictCode",
"adminDistrict2",
"country",
"countryCode",
"type",
"confidence",
"matchCodes",
"timeZone",
"utcOffset"
],
"type": "object"
},
"type": "array"
},
"utcOffsetAt": {
"pattern": "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$",