Create endpoint
POST
/v1/endpoints
const url = 'https://api.catchbin.io/v1/endpoints';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"slug":"example","displayName":"example","operatingMode":"example","status":"example","replayFromDashboard":true,"replayFromApi":true,"genericSignatureHeader":"example","genericSignaturePrefix":"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 \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "slug": "example", "displayName": "example", "operatingMode": "example", "status": "example", "replayFromDashboard": true, "replayFromApi": true, "genericSignatureHeader": "example", "genericSignaturePrefix": "example" }'Authorizations
Section titled “Authorizations”Request Bodyrequired
Section titled “Request Bodyrequired”Media typeapplication/json
object
slug
string
displayName
string
operatingMode
string
status
string
replayFromDashboard
boolean
replayFromApi
boolean
genericSignatureHeader
string
genericSignaturePrefix
string
Examplegenerated
{ "slug": "example", "displayName": "example", "operatingMode": "example", "status": "example", "replayFromDashboard": true, "replayFromApi": true, "genericSignatureHeader": "example", "genericSignaturePrefix": "example"}Responses
Section titled “Responses”Created
Media type*/*
object
id
string format: uuid
slug
string
displayName
string
webhookUrl
string
operatingMode
string
status
string
replayFromDashboard
boolean
replayFromApi
boolean
provider
string
secretSet
boolean
genericSignatureHeader
string
genericSignaturePrefix
string
source
string
createdAt
string format: date-time
updatedAt
string format: date-time
eventCount
integer format: int64
lastEventAt
string format: date-time
lastPurgedAt
string format: date-time
purgedEventCount
integer format: int64
© 2026 catchbinevery webhook, caught. nothing lost.