Skip to main content
POST
/
v1
/
shout
Shout - uppercase a string
curl --request POST \
  --url https://api.acaas.example.com/v1/shout \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "text": "<string>"
}
'
{
  "original": "<string>",
  "result": "<string>",
  "characters_amplified": 123
}

Documentation Index

Fetch the complete documentation index at: https://acaas.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Body

application/json

Input to any capitalization endpoint.

text
string
required

The meek, lowercase text you want made louder.

Minimum string length: 1
Example:

"hello world"

Response

Successful Response

Standard response envelope for capitalization endpoints.

original
string
required

The text you sent in.

result
string
required

The text, but LOUDER.

characters_amplified
integer
required

Number of characters that were made louder.