Summarize

/api/v1/ai/Summarize – Generate a Summary from HTML or Text

Description: Generate a summary from an HTML document or plain text.

Method: POST

Parameters:

  • html: (string) – The content to summarize.

  • isoLang: (string, optional) – The ISO language code for the summary (e.g., en for English).

  • responseFormat: (string) – The format of the response (e.g., text, json).

Request Example:

curl -X POST https://production.cloudbrowser.ai/api/v1/ai/Summarize \
-H "Content-Type: application/json" \
-d '{
  "html": "<html>...</html>",
  "isoLang": "es",
  "responseFormat": "text"
}'

Last updated