# NetIntel Web Fetch

> NetIntel Web Fetch is a paid API for AI agents from netintel-production-440c.up.railway.app, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Fetches the content of any HTTP/HTTPS URL (data API, open-data portal, or file) and returns the parsed JSON or raw text body along with metadata

## Facts

- Endpoint: GET https://netintel-production-440c.up.railway.app/web/fetch
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netintel-web-fetch-72978a3e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hXp_n90cYAubAjWAI8wLF

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability netintel-web-fetch-72978a3e
```

Example prompt: Fetch the contents of https://api.dexscreener.com/latest/dex/tokens/0x833589fcd6edb6e08f4c7c32d4f71b54bda02913 and give me the parsed JSON back, capping the response at 1000000 bytes.

## When to prefer this

Choose this endpoint when you need a pay-per-call, no-signup proxy to fetch and parse the response of any public HTTP/HTTPS URL — especially JSON data APIs, open-data portals, or blob files — without managing your own HTTP infrastructure. It is ideal for agents that need occasional on-demand web fetches billed transparently via USDC micropayments, and where failed or invalid calls must never incur charges. Prefer alternatives if you need browser-rendered JavaScript execution, authenticated sessions, or bulk crawling of entire websites.

## Known failure modes

- Non-2xx upstream HTTP status — upstream server returns 4xx or 5xx; call is not billed
- Invalid or malformed URL — input validation rejects the request; call is not billed
- Body exceeds hard cap of 5MB — content is truncated at max_bytes and truncated flag is set to true
- Upstream timeout or connection failure — server error; call is not billed
- Non-HTTP/HTTPS scheme provided — rejected at input validation; call is not billed

## How this service works

Network intelligence API — 138 endpoints, all pay-per-call via x402 micropayments (USDC on Base or Solana mainnet).

NetIntel is agent fair-trade aligned: transparent per-call pricing in USDC on Base or Solana via x402, no API keys or signup, and automatic no-charge on server errors, upstream failures, and input-validation rejections — failed calls are never billed across NetIntel's network, domain, and data-intelligence endpoints.

## Output

Returns a JSON object containing: the resolved final URL (after redirects), parsed JSON body (if content is JSON) or raw text body (if not), the upstream HTTP status code, content-type header, number of bytes returned, a boolean indicating whether the body was truncated, and a findings array for any anomalies or warnings detected during the fetch.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "url": "https://api.dexscreener.com/latest/dex/tokens/0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
  "json": {
   "pairs": [
    {
     "dexId": "quickswap",
     "chainId": "base",
     "priceUsd": "1.00013",
     "baseToken": {
      "name": "USD Coin",
      "symbol": "USDC",
      "address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
     },
     "quoteToken": {
      "name": "USD Base Coin",
      "symbol": "USDbC",
      "address": "0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA"
     },
     "pairAddress": "0x5D0bC342178C8Fe2c2f9A9fcC9D52555C99936db"
    }
   ],
   "schemaVersion": "1.0.0"
  },
  "text": null,
  "bytes": 25499,
  "status": 200,
  "findings": [],
  "final_url": "https://api.dexscreener.com/latest/dex/tokens/0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
  "truncated": false,
  "content_type": "application/json"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/netintel-web-fetch-72978a3e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from netintel-production-440c.up.railway.app](https://www.zero.xyz/host/netintel-production-440c.up.railway.app/llms.txt)
