✓ Verified 💻 Development ✓ Enhanced Data

Apipick Email Checker

Validate email addresses using the apipick Email Validator API.

Rating
5 (494 reviews)
Downloads
2,885 downloads
Version
1.0.0

Overview

Validate email addresses using the apipick Email Validator API.

Complete Documentation

View Source →

apipick Email Validator

Validate email addresses with syntax check, MX record lookup, and disposable email detection.

Endpoint

text
POST https://www.apipick.com/api/check-email

Authentication: x-api-key: YOUR_API_KEY header required. Get a free API key at https://www.apipick.com/dashboard/api-keys

Request

json
{"email": "[email protected]"}

Response

json
{
  "success": true,
  "code": 200,
  "message": "Email validation complete",
  "data": {
    "email": "[email protected]",
    "valid": true,
    "syntax_valid": true,
    "mx_valid": true,
    "disposable": false,
    "domain": "example.com",
    "normalized": "[email protected]",
    "reason": null
  },
  "credits_used": 1,
  "remaining_credits": 99
}

Key fields:

  • valid: true only when both syntax_valid AND mx_valid are true
  • disposable: true if the domain is a known throwaway email service
  • reason: explanation when validation fails (null on success)
  • normalized: canonical lowercase form of the email

Error Codes

CodeMeaning
400Invalid request
401Missing or invalid API key
402Insufficient credits
Cost: 1 credit per request

Usage Pattern

  • Use $APIPICK_API_KEY env var as the x-api-key header value; if not set, ask the user for their apipick API key
  • Make the POST request with the email address
  • Report the valid status and flag if disposable is true
  • Show reason when validation fails
See references/api_reference.md for full response field descriptions.

Installation

Terminal bash

openclaw install apipick-email-checker
    
Copied!

💻Code Examples

POST https://www.apipick.com/api/check-email

post-httpswwwapipickcomapicheck-email.txt
**Authentication:** `x-api-key: YOUR_API_KEY` header required.
Get a free API key at https://www.apipick.com/dashboard/api-keys

## Request
example.json
{
  "success": true,
  "code": 200,
  "message": "Email validation complete",
  "data": {
    "email": "[email protected]",
    "valid": true,
    "syntax_valid": true,
    "mx_valid": true,
    "disposable": false,
    "domain": "example.com",
    "normalized": "[email protected]",
    "reason": null
  },
  "credits_used": 1,
  "remaining_credits": 99
}

Tags

#web_and-frontend-development #api

Quick Info

Category Development
Model Claude 3.5
Complexity One-Click
Author javainthinking
Last Updated 3/10/2026
🚀
Optimized for
Claude 3.5
🧠

Ready to Install?

Get started with this skill in seconds

openclaw install apipick-email-checker