Geo-located DNS resolution — resolve hostnames from specific countries to see how CDNs, ge
Geo-located DNS resolution — resolve hostnames from specific countries to see how CDNs, geo-blocking, and DNS-based routing differ by region.
5000 (raw units)
price
3
calls / 30d
3
unique payers
2026-09-17
updated
Provider
geodns.iwsolutions.ca · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xDd85eD9E404d22c137a5d9Fc3C200847aa3B11CF",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"countries": [
"US",
"JP",
"DE"
],
"hostname": "google.com",
"record_type": "A"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"hostname": "google.com",
"pricing": {
"base_fee": "$0.0050",
"per_country": "N/A",
"total_charged": "$0.0050"
},
"record_type": "A",
"results": [
{
"country": "US",
"records": [
"142.250.139.102",
"142.250.139.113"
],
"resolved_at": "2026-06-17T02:39:22.071Z",
"resolver": "OpenDNS, United States",
"response_ms": 28,
"ttl": 300
},
{
"country": "JP",
"records": [
"142.251.219.174"
],
"resolved_at": "2026-06-17T02:39:22.102Z",
"resolver": "DNS0, Tokyo PoP",
"response_ms": 58,
"ttl": 300
},
{
"country": "DE",
"error": "Resolution timed out",
"records": [],
"resolved_at": "2026-06-17T02:39:22.150Z",
"resolver": "Quad9, Frankfurt PoP",
"response_ms": 2001,
"ttl": 0
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"countries": {
"description": "ISO 3166-1 alpha-2 country codes (up to 20)",
"items": {
"type": "string"
},
"type": "array"
},
"hostname": {
"description": "Domain name to resolve",
"type": "string"
},
"record_type": {
"description": "DNS record type: A, AAAA, CNAME, MX, TXT, NS",
"type": "string"
}
},
"required": [
"hostname",
"countries"
],
"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": {
"properties": {
"hostname": {
"type": "string"
},
"pricing": {
"properties": {
"base_fee": {
"type": "string"
},
"per_country": {
"type": "string"
},
"total_charged": {
"type": "string"
}
},
"type": "object"
},
"record_type": {
"type": "string"
},
"results": {
"items": {
"properties": {
"country": {
"description": "ISO 3166-1 alpha-2 code",
"type": "string"
},
"error": {
"description": "Error message if resolution failed",
"type": "string"
},
"records": {
"description": "Resolved DNS records",
"items": {
"type": "string"
},
"type": "array"
},
"resolved_at": {
"description": "ISO 8601 timestamp",
"type": "string"
},
"resolver": {
"description": "Resolver location label",
"type": "string"
},
"response_ms": {
"description": "Resolution time in milliseconds",
"type": "integer"
},
"ttl": {
"description": "Time to live in seconds",
"type": "integer"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://geodns.iwsolutions.ca/api/resolve" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://geodns.iwsolutions.ca/api/resolve");
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://geodns.iwsolutions.ca/api/resolve")
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/3620.json, and this resource appears in /discovery/resources and /discovery/search.