Checkfast.pro · Reseller API
Checkfast.pro API
Checkfast.pro API for your integrations and reselling.
How billing works
- price_usd_per_10k is the Checkfast.pro price per 10,000 lines.
- Charged from USDT balance: (lines / 10,000) × price.
Authorization
Authorization: Bearer ck_your_api_key Base URL: https://checkfast.pro
Endpoints
GET https://checkfast.pro/api/v1/balance GET https://checkfast.pro/api/v1/checkers GET https://checkfast.pro/api/v1/tasks?limit=50 POST https://checkfast.pro/api/v1/check GET https://checkfast.pro/api/v1/check?task_id=... GET https://checkfast.pro/api/v1/download?task_id=...
Create a check
# Batch (multipart) POST https://checkfast.pro/api/v1/check Authorization: Bearer ck_xxx Content-Type: multipart/form-data [email protected] task_type=ws # JSON POST https://checkfast.pro/api/v1/check { "query": "+79001234567", "task_type": "tg" } { "numbers": ["+79001","+79002"], "task_type": "ws" } # Status → download when status=exported GET https://checkfast.pro/api/v1/check?task_id=TASK_ID GET https://checkfast.pro/api/v1/download?task_id=TASK_ID
Examples (curl)
curl https://checkfast.pro/api/v1/balance \ -H "Authorization: Bearer ck_xxx" curl https://checkfast.pro/api/v1/checkers \ -H "Authorization: Bearer ck_xxx" curl -X POST https://checkfast.pro/api/v1/check \ -H "Authorization: Bearer ck_xxx" \ -F "file=@./numbers.txt" \ -F "task_type=ws" curl "https://checkfast.pro/api/v1/check?task_id=TASK_ID" \ -H "Authorization: Bearer ck_xxx" curl -L "https://checkfast.pro/api/v1/download?task_id=TASK_ID" \ -H "Authorization: Bearer ck_xxx" -o result.csv
task_type catalog
Current prices are in the price_usd_per_10k field.
| task_type | Name | $/10k |
|---|---|---|
| tg | Telegram Checker | 5 |
| tg_active | Telegram Days Checker | 7 |
| tg_avatar | Telegram Age & Gender Checker | 9 |
| ws | WhatsApp Real-time Checker | 2 |
| ws_active | WhatsApp Days Checker | 3.6 |
| ws_avatar | WhatsApp Age & Gender Checker | 7.6 |
| phonecheck | Phone Number Validation | 8 |
| active_check | Number Active Checker | 13 |
| high_value_users | High-value Users Checker | 14 |
| viber | Viber Checker | 1 |
| viber_active | Viber Days Checker | 10 |
| viber_senior | Viber Avatar, Age, Gender & Others | 30 |
| imessage | iMessage Checker | 4 |
| rcs | RCS Checker | 3 |
| signal | Signal Checker | 8 |
| vk | VKontakte Checker | 16 |
| apple | Apple Checker | 3 |
| apple_email | Apple Email Checker | 4 |
| Facebook Checker | 0.6 | |
| facebook_email | Facebook Email Checker | 0.6 |
| amazon | Amazon Checker | 4 |
| amazon_email | Amazon Email Checker | 4 |
| Instagram Checker | 0.6 | |
| instagram_email | Instagram Email Checker | 0.6 |
| max | MAX Checker | 24 |
| max_full | MAX Full Info Checker | 40 |
| netflix | Netflix Number Checker | 14 |
| netflix_email | Netflix Email Checker | 14 |
| line | Line Checker | 10 |
| line_senior | Line Age & Gender Checker | 30 |
| Twitter Checker | 2 | |
| twitter_email | Twitter Email Checker | 2 |
| tg_username | Telegram Username Checker | 3 |
| tg_username_avatar | Telegram Username Avatar Checker | 5 |
| tg_username_profile | Telegram Username Profile Checker | 7 |
| linkedin_phone | LinkedIn Number Checker | 10 |
| LinkedIn Email Checker | 1 | |
| linkedin_profile | LinkedIn Email Profile Checker | 20 |
| zalo | Zalo Checker | 4 |
| tiktok | TikTok Checker | 18 |
| microsoft | Microsoft Checker | 4 |
| snapchat | Snapchat Checker | 30 |
| messenger | Messenger Checker | 5.6 |
| goto | GoTo Checker | 14 |
| threads | Threads Checker | 1.6 |
| spotify_email | Spotify Email Checker | 2 |
| band | Band Checker | 2 |
| dhl | DHL Checker | 3 |
| sideline | Sideline Checker | 3 |
| airbnb | Airbnb Checker | 4 |
| pornhub | Pornhub Email Checker | 20 |
| temu | Temu Checker | 4 |
| binance | Binance Checker PRO | 13 |
| binance_email | Binance Email Checker | 30 |
| kucoin | KuCoin Checker | 14 |
| kucoin_email | KuCoin Email Checker | 14 |
| htx | HTX Checker | 7 |
| htx_email | HTX Email Checker | 14 |
| coinw | CoinW Checker | 4 |
| coinw_email | CoinW Email Checker | 14 |
| crypto_email | Crypto.com Email Checker | 30 |
| email_check | Email Validation | 14 |
| carrier | Carrier Detection | 4 |
| us_carrier_premium | Advanced US Carrier Checker | 30 |
Error codes
| HTTP | Code | Meaning |
|---|---|---|
| 401 | UNAUTHORIZED | Missing/invalid API key |
| 402 | PAYMENT_REQUIRED | Not enough USDT balance |
| 409 | NOT_READY | Result not ready yet |
| 429 | RATE_LIMIT | Too many requests |
| 502 | PROVIDER_ERROR | Temporary processing failure (balance refunded on create failure) |