API Products Summarize Url

POST /v1/summarize-url
8 tokens / req pkg 1.0.0
typescript bash
const res = await kequtech("/v1/summarize-url", {
  parameters: {
    url: "https://acme.dev/team/mia",
    context: "Preview for a user profile page",
  },
});

About

Fetches a public webpage (text/html or text/*), extracts its visible content and metadata, then produces a structured summary. This includes a title, short description, one-line blurb, full summary, and optional image suggestions when available.

HTML clutter is removed and the main readable content is condensed into predictable object. Works with static and SPA pages, though SPA extraction may take slightly longer.

API reference

Parameters

url (required)
string

URL of the content to summarize.

context
string

Describe yourself or your company (max 400 characters).

Response

title (required)
string

One-line title for the content.

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.

thumbnail
string

URL to a small image representing the content.

image
string

URL to a larger preview or hero image for the content.