List Webhooks
List webhook subscriptions.
GET /v1/webhooks
List webhook subscriptions for the authenticated user.
Auth: Bearer API key (required)
Response 200
{
"data": [
{
"id": "uuid",
"url": "https://your-server.com/webhooks/social0",
"events": ["post.published", "post.failed"],
"active": true,
"created_at": "2026-07-11T14:00:00.000Z"
}
]
}The signing secret is not returned on list — it is shown only at creation time.
cURL
curl https://api.social0.app/v1/webhooks \
-H "Authorization: Bearer sk_live_YOUR_KEY"