Skip to main content
POST
/
v1
/
automations
/
webhook
/
{token}
Fire a Custom Webhook Automation
curl --request POST \
  --url https://api.tryreplicas.com/v1/automations/webhook/{token} \
  --header 'Content-Type: application/json' \
  --data '
{
  "anything": "you want",
  "nested": {
    "too": true
  }
}
'
{
  "accepted": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.replicas.dev/llms.txt

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

Path Parameters

token
string
required

The automation's webhook_token. Treat this like an API key.

Body

application/json

Any JSON value. The full body is embedded into the automation's prompt.

Example:
{
"anything": "you want",
"nested": { "too": true }
}

Response

Execution queued

accepted
boolean
required