Skip to main content
GET
/
v1
/
webhooks
List Webhooks
curl --request GET \
  --url https://api.sigmamind.ai/v1/webhooks \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "workspaceId": "org_BUbkx3PsbzQm5V10",
      "webhookId": "wh_BUbkx3PsbzQm5V10",
      "name": "Call Events - Production",
      "agentId": "D5D0p7TUs66TTAEAx",
      "active": true,
      "secret": "mK9vXq2pL8nR5tY1wA3sD6fH0jC4bE7u",
      "events": "conversation_started",
      "url": "<string>"
    }
  ],
  "page": 0,
  "size": 20,
  "totalCount": 125,
  "totalPages": 7,
  "hasNext": true,
  "hasPrevious": false
}

Documentation Index

Fetch the complete documentation index at: https://docs.sigmamind.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Authenticate every request by passing your API key in the X-API-Key header. To get your key, go to Dashboard → API Keys and create or copy your Production API key.

Query Parameters

agentId
string

Filter webhooks by the agent they are scoped to. Obtained from the agentId field in the agent list or creation response. Omit to return webhooks across all agents.

active
boolean
default:true

Filter webhooks by their active status. true returns only webhooks currently enabled and receiving event deliveries. false returns only disabled webhooks. Defaults to true.

page
integer<int32>
default:0

Zero-based page number to retrieve. Use 0 for the first page. Must be 0 or greater.

size
integer<int32>
default:10

Number of webhooks to return per page. Must be 1 or greater. Defaults to 10.

Response

OK

Standard wrapper for paginated API responses. Use this when returning list data that is split across multiple pages. Includes the current page of results along with pagination metadata to help clients navigate through large datasets efficiently.

data
object[]

List of items for the current page. Contains up to 'size' number of records.

page
integer<int32>

Current page number (0-based index). Indicates which page of results is being returned.

Example:

0

size
integer<int32>

Number of items requested per page. Determines the maximum size of the 'data' list.

Example:

20

totalCount
integer<int64>

Total number of records available across all pages. Useful for calculating pagination on the client side.

Example:

125

totalPages
integer<int32>

Total number of pages available based on totalCounts and size. Helps clients understand how many pages exist in total.

Example:

7

hasNext
boolean

Indicates whether there is a next page available after the current one. Useful for implementing 'Load More' or next navigation.

Example:

true

hasPrevious
boolean

Indicates whether there is a previous page before the current one. Useful for enabling backward navigation.

Example:

false