FeedHorizon API
Webhooks
GET
/webhooks

Returns all configured webhooks for the authenticated user. Maximum 10 webhooks per user.

Authorization

bearerAuth
AuthorizationBearer <token>

API key with fh_ prefix. Pass as Authorization: Bearer fh_...

In: header

Response Body

application/json

curl -X GET "https://app.feedhorizon.dev/api/v1/webhooks"
{
  "data": [
    {
      "id": "string",
      "userId": "string",
      "url": "http://example.com",
      "events": [
        "post.published"
      ],
      "secret": "string",
      "isActive": true,
      "failCount": 0,
      "createdAt": "2019-08-24T14:15:22Z",
      "updatedAt": "2019-08-24T14:15:22Z"
    }
  ]
}