> ## Documentation Index
> Fetch the complete documentation index at: https://docs.woolball.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# Summarization

> Generate text summaries

Generate concise summaries of longer text content.

### Body

<ParamField body="text" type="string" required>
  Text content to summarize
</ParamField>

### Response

<ResponseField name="data" type="string">
  The generated summary
</ResponseField>

### Status Codes

<ResponseField name="200" type="object">
  OK - Successful request
</ResponseField>

<ResponseField name="400" type="object">
  Bad Request - Validation error occurred
</ResponseField>

<ResponseField name="401" type="object">
  Unauthorized - Authentication failed
</ResponseField>

<ResponseField name="402" type="object">
  Payment Required
</ResponseField>

<RequestExample>
  ```bash theme={null}
  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..."
    }'
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "data": "Concise summary of the input text"
  }
  ```
</ResponseExample>
