Skip to main content
GET
/
api
/
v0
/
webhooks
/
list notification webhooks
curl --request GET \
  --url https://console.vast.ai/api/v0/webhooks/ \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "webhooks": [
    {
      "id": 42,
      "user_id": 123,
      "name": "Ops notifications",
      "webhook_url": "https://example.com/vast/webhooks",
      "event_types": [
        "client:low_credit",
        "host:machine_offline"
      ],
      "created_at": 1772490000,
      "updated_at": 1772490000
    }
  ]
}

Authorizations

Authorization
string
header
required

API key must be provided in the Authorization header

Response

Webhooks returned successfully

success
boolean
Example:

true

webhooks
object[]