FeedHorizon API
Webhooks
POST
/webhooks/{id}/test

Send a test webhook to verify your endpoint is configured correctly. The test payload includes event: "webhook.test".

Authorization

bearerAuth
AuthorizationBearer <token>

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

In: header

Path Parameters

id*string

Response Body

application/json

application/json

application/json

curl -X POST "https://app.feedhorizon.dev/api/v1/webhooks/string/test"
{
  "data": {
    "delivered": true,
    "statusCode": 0,
    "statusText": "string"
  }
}
{
  "error": {
    "code": "VALIDATION_ERROR",
    "message": "string",
    "details": [
      {
        "field": "string",
        "message": "string"
      }
    ]
  }
}
{
  "error": {
    "code": "VALIDATION_ERROR",
    "message": "string",
    "details": [
      {
        "field": "string",
        "message": "string"
      }
    ]
  }
}