UserCheck
  • Quick Start
  • Reference
    • Authentication
    • Rate limit
  • API reference
    • Domain
    • Email
    • Blocklist
Powered by GitBook
On this page

Was this helpful?

  1. API reference

Email

PreviousDomainNextBlocklist

Was this helpful?

Check if an email address is disposable

get

Returns information about whether an email address uses a disposable domain, along with additional details about the email and domain.

Authorizations
Path parameters
emailstringRequired

The email address to check

Example: user@example.com
Responses
200
Email check successful
application/json
400
Invalid email format
application/json
429
Rate limit exceeded
application/json
get
GET /email/{email} HTTP/1.1
Host: api.usercheck.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "status": 200,
  "email": "user@example.com",
  "domain": "example.com",
  "mx": false,
  "disposable": false,
  "public_domain": false,
  "relay_domain": false,
  "alias": false,
  "role_account": false,
  "did_you_mean": null,
  "blocklisted": false,
  "spam": false
}