Skip to main content
POST
/
webhooks
/
test
Send a test webhook to the configured URL
curl --request POST \
  --url https://v1.orchestrator.rhinestone.dev/deposit-processor/webhooks/test \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '
{
  "type": "bridge-started"
}
'
{
  "message": "<string>",
  "eventId": "<string>"
}

Documentation Index

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

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

Headers

x-api-key
string
required

API key for authentication

Example:

"your-api-key"

x-api-version
string

API version identifier (e.g. "2026-04.amazon"). Optional today, will become required in a future release.

Pattern: ^\d{4}-\d{2}\.[a-z0-9]+$
Example:

"2026-04.amazon"

Body

application/json
type
enum<string>
required

Which webhook type to simulate

Available options:
deposit-received,
bridge-started,
bridge-delayed,
bridge-complete,
bridge-failed,
post-bridge-swap-complete,
post-bridge-swap-failed,
deposit-refunded,
error
Example:

"bridge-started"

Response

Test webhook dispatched

message
string
required
eventId
string
required