Documentation
Email ValidationGET

Domain Score

Domain trust score on a 0-10 scale. Queries Spamhaus DBL and SURBL concurrently. The internal 0-1 risk score is scaled to 0-10 and mapped to a category: 0.0 - 3.0 : legitimate 3.1 - 6.9 : suspicious 7.0 - 10.0: malicious Use GET /v1/email/score when you need this capability from your application or backend. It does not require a request body. Query parameters are available for request scoping and filtering.

Endpoint

Use this full URL directly in server-side integrations, scripts, or internal tooling.

GET request
https://api.dropfakes.com/api/v1/email/score
Full endpoint URL
GET https://api.dropfakes.com/api/v1/email/score

Authorization

This section explains how this endpoint should be called in the current API version.

No authorization required
This endpoint is documented as public in this version of the API reference. No bearer token is required.
Authorization
Authorization: dk_live_*****

Code examples

Start with curl, then use the language sample that matches your backend.

curl
curl -X GET "https://api.dropfakes.com/api/v1/email/score?domain=value"

Parameters

Query string parameters and request body fields are listed together for faster scanning.

NameLocationTypeRequiredDescriptionDefault
domainquerystringYesQuery parameter for `domain`.-

Success response

The primary success status for this operation is 200.

Status 200
Successful Response
200 application/json
{
  "score": 0.08,
  "category": "legitimate"
}

Error response

Use this example to handle validation and request errors safely on the client or backend.

Status 422
Validation Error
422 application/json
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}