Skip to main content
GET
/
webhooks
List webhooks
curl --request GET \
  --url https://api.lava.so/v1/webhooks \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "webhook_id": "<string>",
      "name": "<string>",
      "url": "<string>",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "has_more": true,
  "next_cursor": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer token authentication used for standard API calls. Format: 'Bearer YOUR_API_KEY'

Query Parameters

cursor
string

Pagination cursor from a previous response

limit
integer
default:10

Maximum number of results to return (1-100)

Required range: 1 <= x <= 100

Response

List of webhooks

data
object[]
has_more
boolean
next_cursor
string