Summarize Content.
cURL
curl --request POST \ --url https://api.octaviatech.app/cms/ai/summarize \ --header 'Content-Type: application/json' \ --header 'x-api-key: <api-key>' \ --data ' { "text": "<p>Long HTML/text…</p>", "maxWords": 120 } '
{ "success": true, "statusCode": 200, "message": "Text summarized successfully", "data": { "summary": "Concise summary…", "tokens": { "used": 123, "remaining": 9877, "limit": 10000 } } }
Raw text or HTML
Target max words
120
OK (summarized)
Was this page helpful?