AntiTempmail
  1. Account
AntiTempmail
  • Email Checks
    • Perform a single email risk assessment.
      POST
    • Perform multiple email risk assessments (up to 50).
      POST
  • Account
    • Get available credit packages
      GET
    • Create checkout session for purchasing credits
      POST
    • Get dashboard statistics
      GET
    • Fetch the current credit balance for the authenticated account.
      GET
    • List recent API usage entries.
      GET
  • test
    GET
  • Schemas
    • ApiMeta
    • ApiSuccessEnvelopeBase
    • ApiError
    • ApiErrorEnvelope
    • RiskSignal
    • EmailCheckRequest
    • EmailCheckResult
    • EmailCheckSuccessEnvelope
    • BatchSubmissionRequest
    • BulkEmailCheckRequest
    • BatchJobResponse
    • BulkEmailCheckSummary
    • CreditBalance
    • BulkEmailCheckResult
    • UsageEntry
    • BulkEmailCheckSuccessEnvelope
  1. Account

Get dashboard statistics

GET
/api/v1/dashboard/stats
Retrieve comprehensive statistics for the authenticated user's dashboard.
Includes:
Monthly email check count
High-risk email count and percentage
Model accuracy rate
Active batch jobs count
Recent checks (last 5)
Current credit balance
User profile information

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.antitempmail.com/api/v1/dashboard/stats' \
--header 'Authorization: Bearer <token>'

Responses

🟢200OK
application/json
Dashboard statistics retrieved successfully
Body

Example
{
    "metrics": {
        "monthlyChecks": 1250,
        "highRiskCount": 85,
        "highRiskPercentage": "6.8",
        "accuracyRate": 97.7,
        "activeBatchJobs": 2
    },
    "recentChecks": [
        {
            "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
            "email": "user@example.com",
            "risk_score": 0,
            "risk_level": "string",
            "created_at": "2019-08-24T14:15:22.123Z"
        }
    ],
    "credits": 5000,
    "profile": {
        "name": "John Doe",
        "email": "john@example.com"
    }
}
🟠401Unauthorized
🔴500Internal Server Error
Modified at 2025-11-12 12:51:41
Previous
Create checkout session for purchasing credits
Next
Fetch the current credit balance for the authenticated account.
Built with