AI

Text Summarizer

Instantly summarise any text into clear bullet points. Paste an article, report, or document and get a concise summary with key takeaways in seconds.

Pricing
Free

API Reference

REST Endpoint
POST https://agentlab.rishit.site/api/v1/agents/text-summarizer/run
curl -X POST \ https://agentlab.rishit.site/api/v1/agents/text-summarizer/run \ -H "Authorization: Bearer ahub_lv_<your_api_key>" \ -H "Content-Type: application/json" \ -d '{ "text": "Paste any article, report, or long document here..." }'
Input Schema
{
  "text": {
    "type": "textarea",
    "example": "Paste any article, report, or long document here...",
    "description": "The text you want to summarise"
  }
}
Output Schema
{
  "model": "string",
  "summary": "string",
  "key_points": "string[]",
  "word_count": "number"
}