AntiTempmail
    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

    EmailCheckSuccessEnvelope

    {
        "success": true,
        "apiVersion": "string",
        "meta": {
            "requestId": "string",
            "timestamp": "2019-08-24T14:15:22.123Z",
            "docsUrl": "http://example.com",
            "rateLimit": {
                "limit": 0,
                "remaining": 0,
                "resetAt": "2019-08-24T14:15:22.123Z",
                "windowSeconds": 0
            },
            "credits": {
                "remaining": 0,
                "used": 0,
                "total": 0,
                "unit": "credit"
            },
            "processingMs": 0,
            "modelVersion": "string",
            "thresholds": {
                "safe": 0,
                "suspicious": 0,
                "danger": 0
            }
        },
        "data": {
            "email": "string",
            "domain": "string",
            "risk_score": 0,
            "risk_level": "safe",
            "signals": [
                {
                    "type": "string",
                    "severity": "low",
                    "weight": 0,
                    "description": "string",
                    "evidence": {
                        "property1": "string",
                        "property2": "string"
                    }
                }
            ],
            "explanation": "string",
            "recommendation": "string",
            "check_time_ms": 0,
            "checked_at": "2019-08-24T14:15:22.123Z"
        }
    }
    Built with