CallerAPI Documentation
  1. Webhook
CallerAPI Documentation
  • Quickstart
  • Use cases
    • For carriers (MNOs/MVNOs)
    • CPaaS platforms
    • Cloud communications providers
    • SIP trunking providers
    • PBX/Cloud PBX
    • UCaaS vendors
  • Account
    • Balance and email
      GET
  • Spam protection
    • Daily spam reports
      • Webhook
        • Subscribe to daily reports
          POST
        • Unsubscribe from daily reports
          DELETE
        • List webhook subscriptions
          GET
        • Manual dispatch of reports
          POST
        • Test webhook
          POST
      • REST
        • Fetch daily spam reports
    • Spam score + HLR
      GET
  • Fraud prevention
    • Ported date
      GET
    • Porting history
      GET
    • Online presence
      GET
    • KYC user identity
      POST
  • Data partners
    • Upload spam reports
      POST
    • Upload contacts
      POST
  • Schemas
    • Spam protection
      • Spam score request
      • Business info
      • Carrier info
      • Complaint (without number)
      • Daily spam reports request
      • Complaint (with phone)
  1. Webhook

List webhook subscriptions

GET
/api/webhooks/complaints/subscriptions
INFO
This endpoint is only available to special enterprise clients, schedule a meeting to discuss the pricing
Get all your webhook subscriptions and their metadata

Request

Authorization
API Key
Add parameter in header
x-auth
Example:
x-auth: ********************
or

Responses

🟢200OK
application/json
Body

🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://callerapi.com/api/webhooks/complaints/subscriptions' \
--header 'x-auth: <api-key>'
Response Response Example
200 - Webhook subscriptions
{
    "status": "success",
    "data": [
        {
            "id": "b8c5b1c3-5d95-4cf0-9f2b-9f5b2b60e1a3",
            "url": "https://partner.example.com/hooks/complaints",
            "active": true,
            "created_at": "2025-10-11T15:04:05Z"
        }
    ]
}
Modified at 2025-10-11 23:48:20
Previous
Unsubscribe from daily reports
Next
Manual dispatch of reports
Built with