CN8 is an AI gateway: a single proxy layer that gives you access to AI capabilities — chatbots with RAG, multi-agent orchestration, LLM completions, dubbing, TTS, media generation, and production-grade video/audio processing — all through one consistent API with unified auth, billing, and usage tracking.
Text Summarization
text-summarize
Summarize a single text. Returns the summary, its sentences, and a compression ratio.
POST a text and receive a summary string, the sentences it was built from, and the compression ratio.
POST/v1/proxy/text-summarize
Summarize text (synchronous)
Parameters
Name
Type
Required
Description
text
string
required
The text to summarize. Send one text per request.
curl -X POST https://api.cn8.io/v1/proxy/text-summarize \
-H "X-API-Key: <cn8_api_key>" \
-H "Content-Type: application/json" \
-d '{"text":"your text here"}'