Text summarizer / summarization API — condense text, Markdown, or a URL into a T
Text summarizer / summarization API — condense text, Markdown, or a URL into a TL;DR plus key bullet points using Claude Haiku. Accepts raw text or a URL (fetched and extracted), enforces an input cap, and returns a clean structured summary so agents can compress documents and articles in one call.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
913 msmedian answer time
$0.005listed price per call
$0.005price 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
POST https://netintel.dev/text-summarize
| Category | Search and research |
|---|---|
| Provider host | netintel.dev |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 2 from 2 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.005 | 913 ms |
Example input (from the provider)
{
"body": {
"text": "The James Webb Space Telescope has captured its deepest infrared image of the universe to date, revealing thousands of galaxies in a tiny patch of sky. The image, known as Webb's First Deep Field, shows galaxy cluster SMACS 0723 as it appeared 4.6 billion years ago. The combined mass of this cluster acts as a gravitational lens, magnifying far more distant galaxies behind it. Astronomers say the image will help them understand galaxy formation in the early universe."
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"max_points": {
"description": "Number of key bullet points to return (default 5, max 10).",
"type": "number"
},
"text": {
"description": "Raw text to summarize. Provide exactly one of text or url. Max 10000 words or 50KB.",
"type": "string"
},
"url": {
"description": "URL to fetch, extract readable text from, and summarize. Provide exactly one of text or url. The page must yield \u226550 words of extractable paragraph text (fetch capped at 500KB/10s) \u2014 thin or JS-rendered pages 400 without charging.",
"type": "string"
}
},
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"compression_ratio": {
"description": "summary_word_count / original_word_count, rounded to 2 decimals",
"type": "number"
},
"findings": {
"description": "Reserved \u2014 currently always [] on success",
"type": "array"
},
"grade": {
"description": "Letter grade A-F",
"type": "string"
},
"key_points": {
"description": "Key bullet points extracted from the content",
"items": {
"type": "string"
},
"type": "array"
},
"original_word_count": {
"description": "Word count of the input content",
"type": "number"
},
"score": {
"description": "Quality score 0-100",
"type": "number"
},
"source": {
"description": "text or url",
"type": "string"
},
"summary": {
"description": "Concise 2-4 sentence summary",
"type": "string"
},
"summary_word_count": {
"description": "Word count of the generated summary",
"type": "number"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}