Skip to main content
GET
/
api
/
v4
/
email
/
checks
List email checks
curl --request GET \
  --url https://api.dataspike.io/api/v4/email/checks \
  --header 'ds-api-token: <api-key>'
{
  "data": [
    {
      "id": "019d4e88-f847-7aa0-892f-bd2d85537ffe",
      "email": "user@example.com",
      "verdict": "pass",
      "code": "email_invalid_syntax",
      "risk_score": 0,
      "checks": {
        "syntax_valid": true,
        "mx_found": true,
        "disposable": true,
        "role_based": true
      },
      "otp_sent": true,
      "otp_expires_at": "2024-01-01T00:10:00Z",
      "ownership_verified": true,
      "ownership_verified_at": "2024-01-01T00:00:00Z",
      "created_at": "2024-01-01T00:00:00Z"
    }
  ],
  "has_next": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.dataspike.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

ds-api-token
string
header
required

Query Parameters

email
string | null

Filter by email address.

created_from
string | null

Lower bound (RFC 3339).

created_to
string | null

Upper bound (RFC 3339).

page
integer | null
default:0

Page number (0-based).

limit
integer | null
default:20

Number of results (1-200).

Response

200 - application/json

Email checks list.

data
object[]
has_next
boolean