AbuseGraphDocs

Email Intelligence

Standalone email risk scoring (disposable, domain, exposure) without a full check.

POST
/api/v1/email

Standalone email intelligence without a full risk check. Pass email or emails (max 1000). Single → { ok: true, result }. Batch → { ok: true, results: [...] }.

Authorization

x-api-key<token>

Workspace secret key (sk_test_… / sk_live_…). Prefer test keys in these docs. Create keys in the console — never commit real values.

In: header

Header Parameters

X-Request-Id?string

Optional client correlation id. Echoed on the response; minted when omitted.

Length8 <= length <= 128

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

curl -X POST "https://example.com/api/v1/email" \  -H "Content-Type: application/json" \  -d '{    "email": "user@example.com"  }'
{  "ok": true,  "result": {    "email": "user@example.com",    "domain": "example.com",    "recommendation": "send",    "score": 12,    "disposable": false,    "risky": false,    "breach": false,    "signals": []  }}