Skip to main content
GET
/
webhooks
/
endpoints
curl -X GET https://api.thinnest.ai/webhooks/endpoints \
  -H "Authorization: Bearer $THINNESTAI_API_KEY"
{
  "endpoints": [
    {
      "id": 1,
      "url": "https://your-app.com/webhooks",
      "event_types": ["chat.message.completed"],
      "agent_id": null,
      "description": "Production webhook",
      "is_active": true,
      "max_retries": 3,
      "last_triggered_at": "2026-03-16T10:30:00",
      "created_at": "2026-03-16T10:00:00"
    }
  ]
}
curl -X GET https://api.thinnest.ai/webhooks/endpoints \
  -H "Authorization: Bearer $THINNESTAI_API_KEY"

Response

{
  "endpoints": [
    {
      "id": 1,
      "url": "https://your-app.com/webhooks",
      "event_types": ["chat.message.completed"],
      "agent_id": null,
      "description": "Production webhook",
      "is_active": true,
      "max_retries": 3,
      "last_triggered_at": "2026-03-16T10:30:00",
      "created_at": "2026-03-16T10:00:00"
    }
  ]
}
The secret is not included in list responses.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Successful Response