All API tools

AI & ML

AI Text Summarizer API

GET/v1/text-summarizer Paid6 credits / call

Authentication

Send your API key as a bearer token. Create one free in the dashboard.

Authorization: Bearer $TOOLSXPO_KEY

Parameters

Passed as query-string parameters. Example values shown.

NameExample
texthello
maxLength256

Example request

curl "https://api.toolsxpo.com/v1/text-summarizer?text=hello&maxLength=256" \
  -H "Authorization: Bearer $TOOLSXPO_KEY"

Response

A standard JSON envelope: { ok, data, meta }. The result is in data (json); meta.credits reports what the call cost.

How to use the Text Summarizer API

Condense long text into a short summary with a Workers AI model. Send the text in text; get the summary in data.summary.

JAVASCRIPT
const res = await fetch("https://api.toolsxpo.com/v1/text-summarizer", {
  method: "POST",
  headers: {
    Authorization: `Bearer ${process.env.TOOLSXPO_KEY}`,
    "Content-Type": "application/json",
  },
  body: JSON.stringify({ text: longArticle, maxLength: 200 }),
});
const { data } = await res.json();
console.log(data.summary);

Options

  • maxLength — approximate upper bound on the summary length (in tokens). Lower it for a one-liner, raise it for a paragraph.

Tips & gotchas

  • Feed it clean prose. If you're summarising a web page, run url-to-markdown first.
  • It's abstractive AI — it can rephrase and, rarely, drop a nuance. Don't rely on it for legally exact wording.
  • Paid tool (real inference). Cost is per successful call.