This repository documents the CheckNumber Telegram Number Checker API integration contract using facts from the expansion manifest.
- Product page: https://checknumber.ai/products/telegram
- API base URL:
https://api.checknumber.ai - Authentication:
X-API-Key - API key environment variable:
CHECKNUMBER_API_KEY - License: MIT
This is a file-based asynchronous API. Submit an authorized text file, poll the task until exported, then download the result URL. It is not a realtime single-identifier endpoint.
curl -X POST "https://api.checknumber.ai/v1/tasks" -H "X-API-Key: ${CHECKNUMBER_API_KEY}" -F "file=@examples/numbers.txt" -F "task_type=tg"
curl -X POST "https://api.checknumber.ai/v1/gettasks" -H "X-API-Key: ${CHECKNUMBER_API_KEY}" -F "task_id=YOUR_TASK_ID"| Code | Name | Input | Limits | Result fields | Documentation |
|---|---|---|---|---|---|
tg |
Number Checker | phone | 1000–10000000 rows | number, activated |
docs |
tg_active |
Activity Checker | phone | 1000–10000000 rows | number, activated, uid, username, lastseen, activedays, member |
docs |
tg_avatar |
Profile Checker | phone | 1000–10000000 rows | Phone, activated, uid, username, Gender, Age, Ethnicity, Avatar, Last Online Time, Active Days, Is Member, first_name, last_name |
docs |
- Treat only an explicit determined result as a positive or negative classification;
undetermined/exists=falseis not a negative. - Authentication keys must come from environment variables or a secret manager; never commit keys or call private/internal endpoints.
- Product prices can change. Check the official pricing page at runtime; this repository intentionally does not hard-code a price.
- Use only identifiers you are authorized to process and follow applicable privacy, platform, and data-protection requirements.
Seven self-contained examples are provided under examples/: Python, Node.js, Go, Java, C#, PHP, and Shell each implement the full submit → poll → download workflow with HTTP error handling. Set the server-side API-key environment variable before running them.
tg: https://docs.checknumber.ai/telegram-bulk-number-checkertg_active: https://docs.checknumber.ai/telegram-activity-checkertg_avatar: https://docs.checknumber.ai/telegram-bulk-number-checker-avatar- Pricing: https://checknumber.ai/pricing
- OpenAPI contract: openapi.yaml
Last reviewed: 2026-08-18.