数据分析

Full contact data validation eliminates inaccurate lead information for global B2B prospecting. Run multi-dimensional phone checks to distinguish valid/invalidnumbers, landlines, mobile lines and WhatsApp registered accounts. Complete email authentication

试用

通过 UpKuaJing 开放平台 API,一次性校验电话号码、邮箱与域名有效性。

它能做什么

技能提供三个命令行脚本,分别调用 UpKuaJing 接口。phone_validity_check.py 返回号码有效性、线路类型与 WhatsApp 注册状态;email_validity_check.py 返回邮箱地址有效性;domain_validity_check.py 返回域名有效性与安全状态。三者均支持单条或批量输入。每次接口调用均按次计费,执行扣费操作前技能会先告知并等待用户明确确认。使用前需在 ~/.upkuajing/.env 中配置 UPKUAJING_API_KEY;余额不足时可通过 auth.py 创建充值订单,--account_info 与 --price_info 子命令可分别查询账户信息与最新价格。

什么时候用它

  • 查询号码有效性、线路类型及是否注册 WhatsApp
  • 发送前校验邮箱地址是否有效
  • 确认域名的有效性与安全状态
  • 在一次调用中批量校验一组号码、邮箱或域名

技能文档

UpKuaJing Contact Info Validity Check

Check the validity of contact information using the UpKuaJing Open Platform API. This skill provides three detection interfaces: phone validity, email validity, and domain validity.

Overview

This skill provides access to UpKuaJing's contact validity detection through:

  • Phone Validity Check (phone_validity_check.py): Check phone number validity, type, and WhatsApp status
  • Email Validity Check (email_validity_check.py): Check email address validity
  • Domain Validity Check (domain_validity_check.py): Check domain validity and security

Running Scripts

Environment Setup

  1. Check Python: python --version
  2. Install dependencies: pip install -r requirements.txt

Script directory: scripts/*.py Run example: python scripts/*.py

Important: Always use direct script invocation like python scripts/phone_validity_check.py. Do NOT use shell compound commands like cd scripts && python phone_validity_check.py.

Three Detection APIs

Phone Validity Check (phone_validity_check.py)

Check phone number validity, type, and WhatsApp status.

Parameters: See Phone Validity API

Examples:

# Check single phone number
python scripts/phone_validity_check.py --phones "+8613812345678"

# Check multiple phone numbers
python scripts/phone_validity_check.py --phones "+8613812345678 +14155551234 +442071234567"

Email Validity Check (email_validity_check.py)

Check email address validity.

Parameters: See Email Validity API

Examples:

# Check single email
python scripts/email_validity_check.py --emails "test@example.com"

# Check multiple emails
python scripts/email_validity_check.py --emails "test@example.com valid@gmail.com invalid-email"

Domain Validity Check (domain_validity_check.py)

Check domain validity and security status.

Parameters: See Domain Validity API

Examples:

# Check single domain
python scripts/domain_validity_check.py --domains "google.com"

# Check multiple domains
python scripts/domain_validity_check.py --domains "google.com fake-domain-xyz123456.com github.com"

API Key and UpKuaJing Account

  • API Key: Stored in ~/.upkuajing/.env file as UPKUAJING_API_KEY
  • First check: If not set, prompt user to provide or apply at UpKuaJing Open Platform

API Key Not Set

First check if the ~/.upkuajing/.env file has UPKUAJING_API_KEY; If UPKUAJING_API_KEY is not set, prompt the user to choose:

  1. User has one: User provides it (manually add to ~/.upkuajing/.env file)
  2. User doesn't have one: Guide user to apply at UpKuaJing Open Platform Wait for user selection;

Account Top-up

When API response indicates insufficient balance, explain and guide user to top up:

  1. Create top-up order (auth.py --new_rec_order)
  2. Based on order response, send payment page URL to user, guide user to open URL and pay, user confirms after successful payment;

Get Account Information

Use this script to get account information for UPKUAJING_API_KEY: auth.py --account_info

Fees

All validity check API calls incur fees. Latest pricing: Users can visit Detailed Price Description Or use: python scripts/auth.py --price_info (returns complete pricing for all interfaces)

Fee Confirmation Principle

Any operation that incurs fees must first inform and wait for explicit user confirmation. Do not execute in the same message as the notification.

Workflow

Decision Guide

User IntentUse API
"Check if phone number is valid"Phone Validity Check
"Verify email address exists"Email Validity Check
"Check if domain is safe"Domain Validity Check

Error Handling

  • API key invalid/non-existent: Check UPKUAJING_API_KEY in ~/.upkuajing/.env file
  • Insufficient balance: Guide user to top up
  • Invalid parameters: Must first check the corresponding API documentation in references/ directory, get correct parameter names and formats from documentation, do not guess

API Documentation Reference

  • Phone Validity: Check references/phone-api.md
  • Email Validity: Check references/email-api.md
  • Domain Validity: Check references/domain-api.md

Notes

  • File paths use forward slashes on all platforms
  • Do not guess parameter names, get accurate parameter names and formats from documentation
  • Prohibit outputting technical parameter format: Do not display code-style parameters in responses, convert to natural language
  • Do not estimate or guess fees — use python scripts/auth.py --price_info to get accurate pricing information

Other UpKuaJing skills you might find useful:

  • linkedin-person-search — Search people from the LinkedIn source
  • global-company-person-search — Search people from the global company database
  • linkedin-company-search — Search companies from the LinkedIn source
  • global-company-search — Search companies from the global company database
  • global-company-shareholder — Query shareholder list from the global company database
  • global-company-employee — Query employee list from the global company database
  • global-company-person-colleague — Query colleague list from the global company database
  • global-company-person-alumni — Query alumni list from the global company database
  • global-company-person-experience — Query work experience list from the global company database
  • global-company-person-education — Query education history list from the global company database
  • global-company-person-school-detail — Query school detail from the global company database
  • upkuajing-global-company-people-search — Global company and people search
  • upkuajing-customs-trade-company-search — Search customs trade companies
  • upkuajing-map-merchants-search — Map-based merchant search
  • upkuajing-email-tool — Send emails and manage email tasks
  • upkuajing-sms-tool — Send SMS and manage SMS tasks
  • upkuajing-contact-info-validity-check — Check contact info validity
  • phone-validity-check — Check phone number validity
  • email-validity-check — Check email address validity
  • domain-validity-check — Check domain validity and security

常见问题

没有 API Key 可以使用吗?
不可以。需先在 ~/.upkuajing/.env 中配置 UPKUAJING_API_KEY,否则技能会提示用户提供或前往 UpKuaJing 开放平台申请。
这些校验是免费的吗?
不是。三个接口均按次收费,技能在执行任何扣费操作前会先告知并等待用户明确确认;可执行 `python scripts/auth.py --price_info` 获取最新价格。
可以一次校验多条数据吗?
可以。每个脚本的 --phones、--emails 或 --domains 参数都接受空格分隔的多个值,一次批量完成校验。

相关技能

Verify mobile and landline numbers and WhatsApp registration status. Reduce invalid contacts to improve outreach for exporters, recruiters and sales teams. Trigger: phone number validation, WhatsApp status check, CRM data cleansing, bulk SMS pre‑verification, supplier verification

2 次安装

核验邮箱、手机号及其余联系方式的真实有效性,在开展客户触达前筛选无效数据,提升联系信息准确度,降低消息无效发送概率,服务外贸获客、CRM 数据清洗和销售线索核验工作。

Verify email validity and format, cut email bounce‑rates and clean contact lists for exporters, recruiters and B2B sales teams. Trigger: email address validation, reduce email bounce rate, email‑list scrubbing, CRM data cleansing, cold outreach optimization

1 次安装

B2B outreach toolkit: send bulk cold email and global SMS, harvest Google Maps merchants, and validate contact info (phone/WhatsApp, email, domain) before reaching out. Monitor email/SMS delivery status, cleanse CRM contact lists, and run end-to-end cross-border outreach campaigns. Trigger: bulk cold email, email send, email open rate tracker, business domain emails, mass mail for exporters, global bulk SMS, two-way SMS replies, SMS delivery reports, cross-border SMS marketing, Google maps business scraper, merchant data download, radius-based lead search, distributor sourcing, phone number validation, WhatsApp status check, email address validation, domain validity security check, CRM data cleansing, bulk SMS pre-verification, B2B outreach campaign

2 次安装

核验电话号码真实有效性、号码类型以及 WhatsApp 注册状态,输出核验结果、号码分类、国家代码和 WhatsApp 启用情况,筛选无效联系方式,提升外贸客户触达效率。

Verify corporate domain status to filter invalid domains, boost email deliverability and clean your CRM and email lists for exporters. Trigger: domain validity check, corporate domain verification, email‑list scrubbing, CRM data cleansing, sales lead validation

1 次安装