Skip to main content
GET
https://api.foxreach.io
/
api
/
v1
/
webhooks
curl -X GET "https://api.foxreach.io/api/v1/webhooks" \
  -H "X-API-Key: otr_your_key"
{
  "data": [
    {
      "id": "cwh_abc123",
      "url": "https://your-app.com/webhooks/outreach",
      "isActive": true,
      "events": ["email.sent", "reply.received"],
      "lastDeliveredAt": "2025-01-15T10:30:00",
      "consecutiveFailures": 0,
      "createdAt": "2025-01-01T10:00:00",
      "updatedAt": "2025-01-15T10:30:00"
    }
  ],
  "meta": {
    "page": 1,
    "pageSize": 20,
    "total": 1,
    "totalPages": 1
  }
}

Query Parameters

page
integer
default:"1"
Page number (starts at 1).
pageSize
integer
default:"20"
Number of webhooks per page (1-100).

Response

data
array
Array of webhook objects.
curl -X GET "https://api.foxreach.io/api/v1/webhooks" \
  -H "X-API-Key: otr_your_key"
{
  "data": [
    {
      "id": "cwh_abc123",
      "url": "https://your-app.com/webhooks/outreach",
      "isActive": true,
      "events": ["email.sent", "reply.received"],
      "lastDeliveredAt": "2025-01-15T10:30:00",
      "consecutiveFailures": 0,
      "createdAt": "2025-01-01T10:00:00",
      "updatedAt": "2025-01-15T10:30:00"
    }
  ],
  "meta": {
    "page": 1,
    "pageSize": 20,
    "total": 1,
    "totalPages": 1
  }
}
The webhook secret is never returned in list or get responses. It is only shown once when the webhook is created.