π¦Webhooks
How do webhooks work?
Webhooks allow you to subscribe to notifications on article status changes.
Every time article status changes, our server will send a POST request to your webhook endpoint with the following body:
{
"id": "cc35e0996a2e8e449d21d6b646678e7e",
"status": "ready",
"title": "Kreisstadt wird bis 2030 weiterwachsen",
"webhook_id": 42
}
webhook_id
variable is meant to be autoincremented. It can never be the same. Also, it can never decrease.
We wonβt check for the response code of your webhook, and we wonβt resend this call if your endpoint doesnβt respond.
Last updated