Skip to content

Search is only available in production builds. Try building and previewing the site to test it out locally.

Echo Test

POST {api-url}/echo?ns={community}

Use this call to execute a basic flow of data through the Celbux API. The system will echo back the text you send in the request.

FieldTypeRequirementDescription
TextStringRequiredText that will be echoed back.
{
"Text": "Hello, world!"
}
Terminal window
curl -X POST '{api-url}/echo?ns={community}' \
-H 'Authorization: bearer YOUR_TOKEN' \
-H 'Content-Type: application/json' \
-d '{"Text":"Hello, world!"}'