Skip to content

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

ItemDetails
Base URLhttps://api.ekycpro.ai
AuthenticationX-API-Key header
Single checkPOST /v1/check (JSON body)
List servicesGET /v1/services
Check balanceGET /v1/balance

Authentication

All requests require your API key in the request header:

X-API-Key: YOUR_API_KEY

Request Format

All check requests use POST /v1/check with a JSON body:

FieldTypeRequiredDescription
service_typestringYesPlatform to check (e.g. facebook, instagram)
identifierstringYesPhone number (E.164) or email address

Response Format

FieldTypeDescription
successboolWhether the request succeeded
data.identifierstringThe checked identifier
data.service_typestringService type checked
data.registeredboolWhether the account is registered
data.detailsobjectAdditional details from the check
data.cachedboolWhether the result came from cache
data.checked_atstringISO 8601 timestamp

Supported Services

Platforms and Email

Serviceservice_typeIdentifier TypeDescription
Facebook CheckerfacebookPhoneFacebook account check
Facebook Email Checkerfacebook_emailEmailFacebook check by email
Instagram CheckerinstagramPhoneInstagram account check
Instagram Email Checkerinstagram_emailEmailInstagram check by email
Threads CheckerthreadsPhoneThreads account check
Twitter CheckertwitterPhoneTwitter/X account check
Amazon CheckeramazonPhoneAmazon account check
Amazon Email Checkeramazon_emailEmailAmazon check by email
Netflix Email CheckernetflixEmailNetflix check by email
Spotify Email Checkerspotify_emailEmailSpotify check by email
Microsoft CheckermicrosoftPhoneMicrosoft account check
Band CheckerbandPhoneBand account check
GoTo CheckergotoPhoneGoTo account check
Indiatimes CheckerindiatimesPhoneIndiatimes account check
HH CheckerhhPhoneHH account check
WhatsApp CheckerwsPhoneWhatsApp registration check
Telegram CheckertgPhoneTelegram registration check

Account Management

APIMethodDescription
Balance QueryGET /v1/balanceQuery available balance
Services ListGET /v1/servicesList supported services