Skip to main content
POST
/
webhooks
Create a webhook subscription
curl --request POST \
  --url https://api.juicer.io/v1/webhooks \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "<string>",
  "subscribed_events": []
}
'
{
  "data": {
    "id": 123,
    "url": "<string>",
    "subscribed_events": [
      "<string>"
    ],
    "consecutive_failures": 123,
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "secret": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.juicer.io/llms.txt

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

Authorizations

Authorization
string
header
required

API key prefixed with jcr_. To obtain a key programmatically (no dashboard required), see POST /v1/authorize.

Body

application/json
url
string<uri>
required

HTTPS endpoint to receive events

subscribed_events
enum<string>[]
required
Available options:
post.created,
social_account.expiring,
social_account.expired

Response

Webhook created (includes secret)

data
object