Get summaries in under 100ms. Our optimized algorithms process text instantly, so you can integrate summarization into your real-time applications without delay.
🎯 Accurate Results
Advanced extractive summarization that preserves the most important information. No hallucinations, no made-up content – just the key points from your original text.
🔒 Secure & Private
Your data stays private. We don't store your text after processing. All API calls are encrypted and authenticated with secure API keys.
📊 Usage Analytics
Track your API usage with detailed analytics. Monitor characters processed, remaining quota, and optimize your integration with real-time metrics.
POST /summarize HTTP/1.1
Host: api.textsummarize.io
Content-Type: application/json
X-API-Key: your-api-key-here
{
"text": "Your long article or document text here...",
"maxLength": 3,
"minLength": 1
}
Response:
{
"success": true,
"data": {
"original_length": 1250,
"summary_length": 320,
"compression_ratio": 26,
"summary": "The condensed version of your text...",
"sentence_count": 3
},
"usage": {
"characters_processed": 1250,
"api_calls_remaining": 999
}
}