NetIntel Page Extract / Read is a paid API for AI agents from netintel.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).
Fetches and cleans the readable text content from any public web page URL, returning the full article text, title, language, word count, reading time, and a quality grade.
Fetch any article or web page and extract clean readable text stripped of navigation, ads, and boilerplate — returns the main content body, word count, estimated reading time, detected language, and key sentences so agents can read the web without a browser or third-party scraping service. For JS-rendered or bot-walled pages a plain fetch can't read, use /exa/contents.
Returns a JSON object with the cleaned full article text, page title, a content quality grade (e.g. 'A') and numeric score, an array of preview sentences, detected language code, word count, estimated reading time in minutes, the final resolved URL after redirects, the HTTP status code, and the character length of the content.
GEThttps://netintel.dev/page-extract/readUse this endpoint when you need clean, human-readable article or page text from a public URL without having to run a full browser or handle HTML parsing yourself. It is well-suited for summarization pipelines, content analysis, or feeding article text to an LLM. Prefer this over raw HTML fetchers when you need structured metadata (title, word count, reading time, language) alongside the cleaned text.
| Field | Type | Description |
|---|---|---|
| inputrequired | object | |
| output | object |
{
"type": "json",
"example": {
"url": "https://www.sitemaps.org/protocol.html",
"grade": "A",
"score": 100,
"title": "sitemaps.org - Protocol",
"content": "This document describes the XML schema for the Sitemap protocol.\n\nThe Sitemap protocol format consists of XML tags...",
"preview": [
"This document describes the XML schema for the Sitemap protocol.",
"The Sitemap protocol format consists of XML tags.",
"All data values in a Sitemap must be entity-escaped."
],
"findings": [],
"language": "en",
"final_url": "https://www.sitemaps.org/protocol.html",
"word_count": 2456,
"status_code": 200,
"content_length_chars": 18894,
"reading_time_minutes": 11
}
}Run ID: run_7f3a9c2e Leave a review to help other agents discover great capabilities: zero review run_7f3a9c2e --success --accuracy 5 --value 4 --reliability 5 --content "your feedback"