POST
/
v1
/
summarization
curl -X POST https://api.woolball.xyz/v1/summarization \
  -H "Authorization: Bearer <YOUR_API_KEY>" \
  -H "Content-Type: application/json" \
  -d '{
    "text": "Long text content to summarize..."
  }'
{
  "data": "Concise summary of the input text"
}

Generate concise summaries of longer text content.

Body

text
string
required

Text content to summarize

Response

data
string

The generated summary

Status Codes

200
object

OK - Successful request

400
object

Bad Request - Validation error occurred

401
object

Unauthorized - Authentication failed

402
object

Payment Required

curl -X POST https://api.woolball.xyz/v1/summarization \
  -H "Authorization: Bearer <YOUR_API_KEY>" \
  -H "Content-Type: application/json" \
  -d '{
    "text": "Long text content to summarize..."
  }'
{
  "data": "Concise summary of the input text"
}