Skip to main content
GET
/
summarization_settings_templates
/
{slug}
Get script template
curl --request GET \
  --url https://api.beyondwords.io/v1/summarization_settings_templates/{slug} \
  --header 'X-Api-Key: <api-key>'
{
  "id": 1,
  "name": "Test template 1",
  "slug": "test_template_1",
  "prompt": "Prompt example",
  "temperature": 1,
  "limit_token_usage": 500,
  "created": "2023-01-01 00:00:00 UTC",
  "updated": "2023-01-01 00:00:05 UTC"
}

Authorizations

X-Api-Key
string
header
required

Path Parameters

slug
string
required

The numeric ID of your summarization settings template

Response

200 - application/json

OK

id
integer
slug
string

Unique identifier for the object

name
string
model
enum<string> | null
Available options:
gpt-5-nano,
gpt-5-mini,
gpt-5,
gpt-5.1
prompt
string | null

Custom prompt for AI summarization generation

Maximum string length: 3000
temperature
number | null

Controls randomness in AI summarization (0.0 = deterministic, 2.0 = very random)

Required range: 0 <= x <= 2
limit_token_usage
integer | null

Maximum number of tokens to use for AI summarization

Required range: 1 <= x <= 500