Replay a captured event against an alternate target
POST
/v1/endpoints/{endpointId}/events/{eventId}/replay
const url = 'https://api.catchbin.io/v1/endpoints/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/events/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/replay';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"mode":"example","target_url":"example","target_secret":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://api.catchbin.io/v1/endpoints/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/events/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/replay \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "mode": "example", "target_url": "example", "target_secret": "example" }'Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”endpointId
required
string format: uuid
eventId
required
string format: uuid
Request Bodyrequired
Section titled “Request Bodyrequired”Media typeapplication/json
object
mode
string
target_url
required
string
target_secret
string
Examplegenerated
{ "mode": "example", "target_url": "example", "target_secret": "example"}Responses
Section titled “Responses”OK
Media type*/*
object
result
string
target_status
integer format: int32
network_failure_reason
string
duration_ms
integer format: int64
response_excerpt_base64
string
excerpt_truncated
boolean
source_body_truncated
boolean
mode
string
target_url
string
event_id
string format: uuid
audit_id
string format: uuid
Per-account daily replay limit reached (issue #293). The response carries a Retry-After header (seconds to the next UTC midnight) and RateLimit-Limit / RateLimit-Remaining / RateLimit-Reset headers.
Media type*/*
object
result
string
target_status
integer format: int32
network_failure_reason
string
duration_ms
integer format: int64
response_excerpt_base64
string
excerpt_truncated
boolean
source_body_truncated
boolean
mode
string
target_url
string
event_id
string format: uuid
audit_id
string format: uuid
© 2026 catchbinevery webhook, caught. nothing lost.