{
  "x402Version": 2,
  "id": 7484,
  "slug": "7484",
  "resource": "https://regionfetch.dev/api/fetch",
  "description": "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.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x97ac53d3bc5ae0a29fd2a40233533374589365be",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "20000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "bazaar": {
      "info": {
        "input": {
          "body": {
            "country": "US",
            "max_tier": "L1",
            "mode": "http",
            "url": "https://example.com/"
          },
          "bodyType": "json",
          "method": "POST",
          "type": "http"
        },
        "output": {
          "example": {
            "data": {
              "body": "<!doctype html>...",
              "contentType": "text/html",
              "url": "https://example.com/"
            },
            "receipt": {
              "attestation": {
                "algorithm": "Ed25519",
                "keyId": "0123456789abcdef",
                "signature": "base64url-signature"
              },
              "country": "US",
              "maxTier": "L1",
              "mode": "http",
              "quotedAmount": "0.02",
              "requestId": "gf_0123456789abcdef0123456789abcdef",
              "resolvedTier": "L0",
              "status": "succeeded",
              "statusCode": 200,
              "supplier": "decodo"
            }
          },
          "type": "json"
        }
      },
      "routeTemplate": "/api/fetch",
      "schema": {
        "$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"
      }
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "regionfetch.dev",
  "lastUpdated": "2026-09-17T03:54:59.781Z",
  "quality": {
    "calls30d": 4,
    "uniquePayers30d": 2,
    "lastCalledAt": "2026-09-17T03:54:57.29Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "regionfetch.dev",
    "manifest_name": "regionfetch.dev",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}