CallerAPI Documentation
  1. REST
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
        • Unsubscribe from daily reports
        • List webhook subscriptions
        • Manual dispatch of reports
        • Test webhook
      • REST
        • Fetch daily spam reports
          GET
    • Spam score + HLR
      GET
  • Fraud prevention
    • Ported date
      GET
    • Porting history
      GET
    • Online presence
      GET
    • KYC user identity
      POST
  • Data partners
    • Partner tems & docs
    • 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. REST

Fetch daily spam reports

GET
/api/spam-reports/daily/{country_code}
INFO
This endpoint is only available to special enterprise clients, schedule a meeting to discuss the pricing
Fetch the daily spam reports we have collected from multiple sources and validated with our algorhitms and validation team
This endpoint is designed for carriers, telcos and platforms processing over 3 million calls/sms a month, so they can save on volume and own the data
Pricing on this endpoint is flat, no pay-per-request, so you can get a predictable, fixed cost, while retaining all the benefits of the API

Request

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

Query Params

Responses

🟢200OK
application/json
Body

🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.callerapi.com/api/spam-reports/daily/US?page=1&page_size=1000' \
--header 'x-auth: <api-key>'
Response Response Example
200 - Daily reports (truncated to 2 instead of 500)
{
    "data": {
        "complaints": [
            {
                "PhoneNumber": "+13072699147",
                "CreatedDate": "2025-08-05T01:03:54Z",
                "ViolationDate": "2025-09-04T13:01:00Z",
                "ConsumerState": "Wyoming",
                "Subject": "Other",
                "RecordedMessageOrRobocall": "Y",
                "Comment": "",
                "TxID": "MMoO6wP5rGb3jfLohhCcjA"
            },
            {
                "PhoneNumber": "+16892090312",
                "CreatedDate": "2025-08-05T22:17:40Z",
                "ViolationDate": "2025-08-05T22:16:00Z",
                "ConsumerState": "Kentucky",
                "Subject": "Other",
                "RecordedMessageOrRobocall": "N",
                "Comment": "Silent call",
                "TxID": "jOiSuyqTlsndUjYwAdAOZA"
            }
        ],
        "date": "06/08/2025",
        "next_update": 1754571630,
        "next_update_in": 67171.961994378,
        "page": 1,
        "page_size": 500,
        "total": 18828
    },
    "status": "success"
}
Modified at 2025-11-26 23:22:20
Previous
Test webhook
Next
Spam score + HLR
Built with