← 返回
未分类 Key 中文

AntiTempmail

Validate email addresses against temporary/disposable email providers using AntiTempMail API. Detect throwaway emails to protect your services.
使用 AntiTempMail API 验证邮箱地址,检测临时/一次性邮箱,保护服务安全。
ericmymj ericmymj 来源
未分类 clawhub v1.0.0 1 版本 100000 Key: 需要
★ 0
Stars
📥 213
下载
💾 0
安装
1
版本
#latest

概述

AntiTempMail Skill

Validate email addresses to detect temporary/disposable email providers. Protect your services from throwaway accounts.

Setup

Set your API key as an environment variable:

export ANTITEMPMAIL_API_KEY="your_api_key_here"

Get your API key from: https://antitempmail.com/dashboard

Commands

Check Single Email

curl -X POST https://antitempmail.com/api/v1/email/check \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $ANTITEMPMAIL_API_KEY" \
  -d '{"email": "test@tempmail.com"}'

Response:

{
  "email": "test@tempmail.com",
  "isTemporary": true,
  "domain": "tempmail.com",
  "provider": "TempMail",
  "risk": "high"
}

Check Multiple Emails (Bulk)

curl -X POST https://antitempmail.com/api/v1/email/check/bulk \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $ANTITEMPMAIL_API_KEY" \
  -d '{
    "emails": [
      "user1@gmail.com",
      "user2@tempmail.com",
      "user3@10minutemail.com"
    ]
  }'

Response:

{
  "results": [
    {
      "email": "user1@gmail.com",
      "isTemporary": false,
      "domain": "gmail.com",
      "risk": "low"
    },
    {
      "email": "user2@tempmail.com",
      "isTemporary": true,
      "domain": "tempmail.com",
      "provider": "TempMail",
      "risk": "high"
    },
    {
      "email": "user3@10minutemail.com",
      "isTemporary": true,
      "domain": "10minutemail.com",
      "provider": "10MinuteMail",
      "risk": "high"
    }
  ],
  "summary": {
    "total": 3,
    "temporary": 2,
    "legitimate": 1
  }
}

Usage Examples

Validate User Registration

When a user signs up, check if their email is temporary:

EMAIL="newuser@example.com"
RESULT=$(curl -s -X POST https://antitempmail.com/api/v1/email/check \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $ANTITEMPMAIL_API_KEY" \
  -d "{\"email\": \"$EMAIL\"}")

IS_TEMP=$(echo $RESULT | jq -r '.isTemporary')

if [ "$IS_TEMP" = "true" ]; then
  echo "⚠️  Temporary email detected! Registration blocked."
else
  echo "✅ Valid email. Proceeding with registration."
fi

Clean Email List

Filter out temporary emails from a list:

# Read emails from file (one per line)
EMAILS=$(cat email_list.txt | jq -R . | jq -s .)

curl -X POST https://antitempmail.com/api/v1/email/check/bulk \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $ANTITEMPMAIL_API_KEY" \
  -d "{\"emails\": $EMAILS}" | \
  jq '.results[] | select(.isTemporary == false) | .email'

Response Fields

  • email: The validated email address
  • isTemporary: Boolean indicating if it's a temporary email
  • domain: Email domain
  • provider: Name of the temporary email provider (if detected)
  • risk: Risk level (low, medium, high)
  • confidence: Detection confidence score (0-100)

Error Handling

Common errors:

  • 401 Unauthorized: Invalid or missing API key
  • 429 Too Many Requests: Rate limit exceeded
  • 400 Bad Request: Invalid email format

Rate Limits

  • Free tier: 100 requests/day
  • Pro tier: 10,000 requests/day
  • Enterprise: Custom limits

Check your usage at: https://antitempmail.com/dashboard/credits

Notes

  • API responses are cached for 24 hours
  • Bulk endpoint supports up to 100 emails per request
  • All requests are logged for security and analytics

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-05-12 06:01 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

it-ops-security

1password

steipete
设置和使用 1Password CLI (op)。适用于:安装 CLI、启用桌面应用集成、登录(单/多账户)、通过 op 读取/注入/运行密钥。
★ 53 📥 31,955
it-ops-security

OpenClaw Backup

alex3alex
备份与恢复 OpenClaw 数据。适用于创建备份、设置自动备份计划、从备份恢复或管理备份轮转。处理 ~/.openclaw 目录归档并包含适当的排除规则。
★ 90 📥 31,175
it-ops-security

Free Ride - Unlimited free AI

shaivpidadi
管理OpenClaw的OpenRouter免费AI模型,自动按质量排名模型,配置速率限制备用方案,并更新opencla...
★ 472 📥 78,745