Split text into overlapping chunks for RAG ingestion — by characters or words, w
Split text into overlapping chunks for RAG ingestion — by characters or words, with configurable chunk size and overlap. Deterministic (same input → same chunks), returns each chunk with its index and start/end offsets. No API key, no LLM. Pairs with /v1/embeddings for a full chunk→embed pipeline.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
939 msmedian answer time
$0.001listed price per call
$0.001price 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/chunk
| Category | Everything else |
|---|---|
| Provider host | netintel.dev |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 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.001 | 939 ms |
Example input (from the provider)
{
"body": {
"chunk_size": 60,
"overlap": 15,
"text": "NetIntel is a pay-per-call API for AI agents. It offers over one hundred endpoints. Agents pay per request in USDC."
},
"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": {
"chunk_size": {
"description": "Window size in chars or words. Default 1000; clamped to 50\u201320000 chars or 5\u201320000 words. Aliases: size, chunkSize.",
"type": "number"
},
"overlap": {
"description": "Units shared by consecutive chunks. Default 10% of chunk_size (max 100); clamped to 0..chunk_size-1. Aliases: chunk_overlap, chunkOverlap.",
"type": "number"
},
"text": {
"description": "Text to split \u2014 1 to 200000 characters. Aliases: content, input, body.",
"type": "string"
},
"unit": {
"description": "\"chars\" (default) or \"words\". Aliases: by, mode.",
"type": "string"
}
},
"required": [
"text"
],
"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": {
"chunk_size": {
"description": "Effective window size after clamping",
"type": "number"
},
"chunks": {
"description": "Sliding-window chunks in order. start/end are UTF-16 character offsets into the source (text.slice(start, end) reproduces a chars-mode chunk; words-mode chunks are re-joined with single spaces). Surrogate pairs are never split.",
"items": {
"properties": {
"end": {
"type": "number"
},
"index": {
"type": "number"
},
"length": {
"description": "Characters in this chunk's text",
"type": "number"
},
"start": {
"type": "number"
},
"text": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"count": {
"description": "Number of chunks (max 2000)",
"type": "number"
},
"findings": {
"description": "Parameter adjustments applied (clamped chunk_size/overlap, unknown unit); [] when none",
"items": {
"properties": {
"detail": {
"type": "string"
},
"rule": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"overlap": {
"description": "Effective overlap after clamping",
"type": "number"
},
"source_length": {
"description": "Length of the input text in characters",
"type": "number"
},
"unit": {
"description": "chars or words",
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}