ToolAssay

Fetch any URL and get the raw body back — JSON parsed, everything else as text —

Fetch any URL and get the raw body back — JSON parsed, everything else as text — from safe server-side egress. For data APIs (ArcGIS, government/open-data portals, blob storage) that /web/extract's markdown conversion mangles. No API key, SSRF-guarded, billed only on a usable 2xx response. Pass url as ?url= (GET) or a JSON body (POST).

Answeringour last check, 2026-09-24
1 of 1checks answered this week
916 msmedian answer time
$0.003listed price per call
$0.003price 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

GET https://netintel.dev/web/fetch

CategorySearch and research
Provider hostnetintel.dev
Networkseip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp
Payment schemesexact
Self-reported calls, 30 days2 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.003 916 ms

Example input (from the provider)

{
  "method": "GET",
  "queryParams": {
    "url": "https://api.dexscreener.com/latest/dex/tokens/0x833589fcd6edb6e08f4c7c32d4f71b54bda02913"
  },
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "method": {
          "enum": [
            "GET"
          ],
          "type": "string"
        },
        "queryParams": {
          "properties": {
            "max_bytes": {
              "description": "Optional read cap in bytes (default 2000000, hard cap 5000000); longer bodies are truncated and flagged",
              "type": "number"
            },
            "url": {
              "description": "Absolute http(s) URL to fetch (data API, open-data portal, blob file). Aliases: uri, target, link, u",
              "type": "string"
            }
          },
          "required": [
            "url"
          ],
          "type": "object"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "properties": {
            "bytes": {
              "description": "bytes returned (\u2264 max_bytes)",
              "type": "number"
            },
            "content_type": {
              "description": "upstream media type",
              "type": [
                "string",
                "null"
              ]
            },
            "final_url": {
              "description": "after redirects",
              "type": "string"
            },
            "findings": {
              "type": "array"
            },
            "json": {
              "description": "parsed body when it is JSON",
              "type": [
                "object",
                "array",
                "null"
              ]
            },
            "status": {
              "description": "upstream HTTP status (2xx)",
              "type": "number"
            },
            "text": {
              "description": "raw body when it is not JSON",
              "type": [
                "string",
                "null"
              ]
            },
            "truncated": {
              "type": "boolean"
            },
            "url": {
              "type": "string"
            }
          },
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON