# NetIntel Exa Web Contents Fetcher

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

Fetches and returns the full readable text content of 1–3 URLs using Exa's web crawling infrastructure, with optional live-crawl control and character limits

## Facts

- Endpoint: GET https://netintel-production-440c.up.railway.app/exa/contents
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netintel-exa-web-contents-fetcher-becdd6d8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nMcwef6qy90SyKCB-x7ZL

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-exa-web-contents-fetcher-becdd6d8
```

Example prompt: Grab the readable text from these three pages for me: https://www.x402.org/, https://exa.ai/about, and https://openai.com/research — cap each at 8000 characters and always do a live crawl.

## When to prefer this

Choose this endpoint when you need to retrieve the clean, readable text of specific known URLs (1–3 at a time) and want Exa's high-quality content extraction with configurable live-crawl behavior. It is ideal over generic scraping endpoints when you want a no-signup, pay-per-call micropayment model with guaranteed no-charge on failures. Prefer this over search-and-fetch pipelines when you already have the target URLs. Not suitable for crawling entire sites or discovering URLs — use a search endpoint first if you need URL discovery.

## Known failure modes

- URL is unreachable or returns a non-200 HTTP status — per-URL error field is populated, call still succeeds and is not billed
- Upstream Exa service failure — server error returned, call is not billed per NetIntel policy
- Input validation failure (e.g. no URLs provided, more than 3 URLs, malformed URL) — rejected with validation error, not billed
- Page content is empty or unextractable — text field may be null with status indicating the issue
- livecrawl mode mismatch — if 'never' is set and cached content is stale, returned text may be outdated

## 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

A JSON object containing a results array where each entry includes the URL, extracted plain text, page title, author, published date, character count, truncation flag, per-URL success/error status, plus top-level counts of how many URLs were requested and succeeded, and the provider name ('exa').

## 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": [
      "urls"
     ],
     "properties": {
      "urls": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "description": "1-3 absolute http(s) URLs. Aliases: url (single string), links, targets"
      },
      "livecrawl": {
       "type": "string",
       "description": "fallback (default) | always | never | preferred. Alias: live"
      },
      "max_characters": {
       "type": "number",
       "description": "Per-page character cap, 200-20000 (default 4000). Aliases: maxCharacters, max_chars, limit"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "results": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "url": {
          "type": "string"
         },
         "text": {
          "type": [
           "string",
           "null"
          ]
         },
         "error": {
          "type": [
           "string",
           "null"
          ]
         },
         "title": {
          "type": [
           "string",
           "null"
          ]
         },
         "author": {
          "type": [
           "string",
           "null"
          ]
         },
         "status": {
          "type": "string"
         },
         "truncated": {
          "type": "boolean"
         },
         "char_count": {
          "type": "number"
         },
         "published_date": {
          "type": [
           "string",
           "null"
          ]
         }
        }
       }
      },
      "findings": {
       "type": "array"
      },
      "provider": {
       "type": "string"
      },
      "requested": {
       "type": "number"
      },
      "succeeded": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "results": [
   {
    "url": "https://www.x402.org/",
    "text": "x402 is an open standard for internet-native payments…",
    "error": null,
    "title": "x402 — internet-native payments",
    "author": null,
    "status": "success",
    "truncated": false,
    "char_count": 1872,
    "published_date": null
   }
  ],
  "findings": [],
  "provider": "exa",
  "requested": 1,
  "succeeded": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/netintel-exa-web-contents-fetcher-becdd6d8/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)
