Retrieve a public HTTPS URL from the US, Germany, Japan, Brazil, or India
Retrieve a public HTTPS URL from the US, Germany, Japan, Brazil, or India. Use HTTP mode for lightweight retrieval, or browser mode to render JavaScript pages. For pages with bot protection, set max_tier to L2 for managed unblocking at $0.05 USDC; L0/L1 costs $0.02 USDC. Returns the fetched body and an Ed25519-signed receipt for provenance.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
2273 msmedian answer time
$0.02listed price per call
$0.02price it asked us
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://regionfetch.dev/api/fetch
| Category | Code and developer |
|---|---|
| Provider host | regionfetch.dev |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 4 from 2 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.02 | 2273 ms |
Example input (from the provider)
{
"body": {
"country": "US",
"max_tier": "L1",
"mode": "http",
"url": "https://example.com/"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"country": {
"description": "Country from which the request should originate.",
"enum": [
"US",
"DE",
"JP",
"BR",
"IN"
],
"type": "string"
},
"max_tier": {
"default": "L1",
"description": "Maximum permitted capability tier. L0/L1 use Decodo; set L2 for pages with bot protection to add IPRoyal managed unblocking. Unresolved CAPTCHA or bot challenges may still fail.",
"enum": [
"L0",
"L1",
"L2"
],
"type": "string"
},
"mode": {
"default": "http",
"description": "Use http for lightweight retrieval or browser to render JavaScript pages.",
"enum": [
"http",
"browser"
],
"type": "string"
},
"url": {
"description": "Public HTTPS URL to retrieve. Private and loopback targets are rejected.",
"format": "uri",
"maxLength": 2048,
"pattern": "^https://",
"type": "string"
}
},
"required": [
"url",
"country"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"properties": {
"data": {
"properties": {
"body": {
"type": "string"
},
"contentType": {
"type": [
"string",
"null"
]
},
"url": {
"format": "uri",
"type": "string"
}
},
"required": [
"url",
"body"
],
"type": "object"
},
"receipt": {
"properties": {
"attestation": {
"properties": {
"algorithm": {
"const": "Ed25519",
"type": "string"
},
"keyId": {
"type": "string"
},
"signature": {
"type": "string"
}
},
"required": [
"algorithm",
"keyId",
"signature"
],
"type": "object"
},
"country": {
"enum": [
"US",
"DE",
"JP",
"BR",
"IN"
],
"type": "string"
},
"maxTier": {
"enum": [
"L0",
"L1",
"L2"
],
"type": "string"
},
"mode": {
"enum": [
"http",
"browser"
],
"type": "string"
},
"quotedAmount": {
"type": "string"
},
"requestId": {
"type": "string"
},
"resolvedTier": {
"enum": [
"L0",
"L1",
"L2"
],
"type": "string"
},
"status": {
"enum": [
"succeeded",
"failed"
],
"type": "string"
},
"supplier": {
"enum": [
"decodo",
"iproyal"
],
"type": "string"
}
},
"required": [
"requestId",
"supplier",
"country",
"mode",
"maxTier",
"resolvedTier",
"status",
"attestation"
],
"type": "object"
}
},
"required": [
"data",
"receipt"
],
"type": "object"
},
"type": {
"const": "json",
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}