Skip to main content
GET
/
webhooks
/
{id}
/
deliveries
List webhook deliveries
curl --request GET \
  --url https://api.social-api.ai/v1/webhooks/{id}/deliveries \
  --header 'Authorization: <api-key>'
{
  "count": 123,
  "data": [
    {
      "attempt_count": 123,
      "created_at": "<string>",
      "description": "<string>",
      "event_type": "<string>",
      "id": "<string>",
      "response_duration_ms": 123,
      "response_status_code": 123,
      "status": "<string>"
    }
  ],
  "next_cursor": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.social-api.ai/llms.txt

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

Authorizations

Authorization
string
header
required

Prefix your API key with "Bearer ". Example: Authorization: Bearer sapi_key_...

Path Parameters

id
string
required

Webhook endpoint ID

Query Parameters

status
string

Filter by delivery status

event_type
string

Filter by event type

cursor
string

Pagination cursor

limit
integer

Page size (default 50)

Response

OK

count
integer
data
object[]
next_cursor
string