API Products Summarize Text

POST /v1/summarize-text
4 tokens / req pkg 1.0.0
typescript bash
const res = await kequtech("/v1/summarize-text", {
  parameters: {
    text: "Acme is preparing a new internal dashboard that consolidates project status,\nteam health metrics, and upcoming deadlines. The goal is to reduce scattered reports\nand give managers a single view of what needs attention. Early prototypes show fewer\ncoordination meetings and faster decision-making.",
    context: "Internal planning notes for project overview",
  },
});

About

Condenses up to 3000 characters of arbitrary plain text into a structured bundle. The output includes a title, short description, one-line blurb, and full summary.

Formatting from the input is preserved before summarization, and the output is designed for quick reading and straightforward downstream processing.

API reference

Parameters

text (required)
string

Text content to summarize. (10-3000 characters).

context
string

Describe yourself or your company (max 400 characters).

Response

excerpt (required)
string

Short description or excerpt from the content.

blurb (required)
string

Concise blurb summarizing the content.

summary (required)
string

Detailed summary of the content.