# NetIntel Exa Contents — Batch URL Reader

> NetIntel Exa Contents — Batch URL Reader is a paid API for AI agents from netintel.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Fetches clean page text, title, author, and publish date for up to 3 URLs in one call, bypassing JS rendering and bot walls via Exa's index and live crawl.

## Facts

- Endpoint: GET https://netintel.dev/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-contents-batch-url-reader-b70063e5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8Wgb38_qARv3Qa7x1C4c7

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-contents-batch-url-reader-b70063e5
```

Example prompt: Can you fetch the full text of these three articles for me — https://example.com/article1, https://example.com/article2, and https://example.com/article3 — including their titles and publish dates? Some of them might be JS-rendered so use live crawl if needed.

## When to prefer this

Choose this endpoint when you need to read the actual text content of specific known URLs — especially JS-rendered pages, paywalled content, or bot-protected sites that a simple HTTP GET cannot access. It is preferable to a direct fetch when pages require JavaScript execution or block scrapers. Use it over /exa/search when you already know the exact URLs and just need their content. Ideal for batch reading 2–3 URLs in a single paid call rather than making separate requests.

## Known failure modes

- URL unreachable or returns non-200 — per-URL status set to error with error message
- All 3 URLs fail — succeeded=0, results still returned with error fields
- livecrawl=never and page is JS-rendered — text may be empty or partial
- max_characters too low — text truncated with truncated=true
- More than 3 URLs submitted — rejected or only first 3 processed
- Malformed URL in array — that entry returns error status

## How this service works

Clean page text for up to 3 URLs in one call via Exa's index + live crawl — works on JS-rendered and bot-walled pages that direct fetch can't read. Returns title, author, published_date and text per URL, with per-URL status. Pairs with /exa/search (search → contents). No API key, pay per call on Base or Solana.

## Output

Returns a results array with one entry per URL, each containing: url, title, author, published_date, text (cleaned body), status (success/error), char_count, truncated flag, and an error field if the fetch failed. Also includes top-level fields: provider (exa), requested count, succeeded count, and a findings array.

## 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-contents-batch-url-reader-b70063e5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from netintel.dev](https://www.zero.xyz/host/netintel.dev/llms.txt)
