EkycPro API - Real-time Phone Number and Email Verification Service
Welcome to EkycPro API — real-time phone number verification and email validation service for developers and businesses.
What is EkycPro?
EkycPro provides real-time single number verification APIs that help you instantly verify phone numbers and emails across 15+ platforms. Each request returns results immediately — no file uploads, no polling, no waiting.
Typical use cases:
- Real-time user verification — check a phone number at registration time
- Fraud prevention — verify user-provided identifiers on the spot
- CRM enrichment — identify which platforms a contact uses
- Lead qualification — instant social media presence check
Quick Start
1. Get your API Key
Sign up at ekycpro.ai and retrieve your API key from the dashboard.
2. Check a single number
curl -X POST 'https://api.ekycpro.ai/v1/check' \-H 'X-API-Key: YOUR_API_KEY' \-H 'Content-Type: application/json' \-d '{"service_type": "facebook", "identifier": "+1234567890"}'3. Get instant result
{ "success": true, "data": { "identifier": "+1234567890", "service_type": "facebook", "registered": true, "details": {}, "cached": false, "checked_at": "2026-04-14T10:00:00Z" }}API Overview
| Item | Details |
|---|---|
| Base URL | https://api.ekycpro.ai |
| Authentication | X-API-Key header |
| Single check | POST /v1/check (JSON body) |
| List services | GET /v1/services |
| Check balance | GET /v1/balance |
Authentication
All requests require your API key in the request header:
X-API-Key: YOUR_API_KEYRequest Format
All check requests use POST /v1/check with a JSON body:
| Field | Type | Required | Description |
|---|---|---|---|
service_type | string | Yes | Platform to check (e.g. facebook, instagram) |
identifier | string | Yes | Phone number (E.164) or email address |
Response Format
| Field | Type | Description |
|---|---|---|
success | bool | Whether the request succeeded |
data.identifier | string | The checked identifier |
data.service_type | string | Service type checked |
data.registered | bool | Whether the account is registered |
data.details | object | Additional details from the check |
data.cached | bool | Whether the result came from cache |
data.checked_at | string | ISO 8601 timestamp |
Supported Services
Platforms and Email
| Service | service_type | Identifier Type | Description |
|---|---|---|---|
| Facebook Checker | facebook | Phone | Facebook account check |
| Facebook Email Checker | facebook_email | Facebook check by email | |
| Instagram Checker | instagram | Phone | Instagram account check |
| Instagram Email Checker | instagram_email | Instagram check by email | |
| Threads Checker | threads | Phone | Threads account check |
| Twitter Checker | twitter | Phone | Twitter/X account check |
| Amazon Checker | amazon | Phone | Amazon account check |
| Amazon Email Checker | amazon_email | Amazon check by email | |
| Netflix Email Checker | netflix | Netflix check by email | |
| Spotify Email Checker | spotify_email | Spotify check by email | |
| Microsoft Checker | microsoft | Phone | Microsoft account check |
| Band Checker | band | Phone | Band account check |
| GoTo Checker | goto | Phone | GoTo account check |
| Indiatimes Checker | indiatimes | Phone | Indiatimes account check |
| HH Checker | hh | Phone | HH account check |
| WhatsApp Checker | ws | Phone | WhatsApp registration check |
| Telegram Checker | tg | Phone | Telegram registration check |
Account Management
| API | Method | Description |
|---|---|---|
| Balance Query | GET /v1/balance | Query available balance |
| Services List | GET /v1/services | List supported services |