Skip to main content
GET
/
webhooks
/
{id}
/
deliveries
/
{did}
Get webhook delivery
curl --request GET \
  --url https://api.social-api.ai/v1/webhooks/{id}/deliveries/{did} \
  --header 'Authorization: <api-key>'
{
  "attempt_count": 123,
  "attempts": [
    {
      "attempt_number": 123,
      "created_at": "<string>",
      "duration_ms": 123,
      "error_message": "<string>",
      "response_body": "<string>",
      "status_code": 123
    }
  ],
  "created_at": "<string>",
  "description": "<string>",
  "endpoint_id": "<string>",
  "event_type": "<string>",
  "id": "<string>",
  "payload": [
    123
  ],
  "response_duration_ms": 123,
  "response_status_code": 123,
  "status": "<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

did
string
required

Delivery ID

Response

OK

attempt_count
integer
attempts
object[]
created_at
string
description
string
endpoint_id
string
event_type
string
id
string
payload
integer[]
response_duration_ms
integer
response_status_code
integer
status
string