API Keys
At the top of the API Keys page you’ll see your API quotas: per-second cap, daily cap, and minimum call interval.
Typical defaults are 1 req/s, ~24/day (Free) and ~1500/day (Paid) with minimum intervals (e.g., 3600 s Free, 120 s Paid). Admins may adjust these; the values shown in-product are authoritative.
Create & manage
- Click Create API Key to generate a token (copy and store securely).
- You can later copy, rename, rotate, or revoke any key.
- Keep your token secret — treat it like a password.
Endpoints
Base URL: https://api.leadgencrypto.com/api
Authenticate by passing apikey=YourApiKeyToken in the query string. Responses are JSON with status, message, and a result array.
Recent (24h)
GET URL
https://api.leadgencrypto.com/api?module=lead&action=viewRecentLeads&apikey=YourApiKeyToken
cURL
curl -i "https://api.leadgencrypto.com/api?module=lead&action=viewRecentLeads&apikey=YourApiKeyToken"
Returns leads from the last 24 hours.
Latest (with limit)
GET URL
https://api.leadgencrypto.com/api?module=lead&action=viewLatestLeads&limit=100&apikey=YourApiKeyToken
cURL
curl -i "https://api.leadgencrypto.com/api?module=lead&action=viewLatestLeads&limit=100&apikey=YourApiKeyToken"
limit is clamped to your plan maximum; exceeding it returns a clear error.
Sample response
{
"status": "1",
"message": "OK",
"result": [
{
"createdAt": "2025-09-24T11:22:33.000Z",
"website": "https://project.example",
"tokenAddress": "0x...",
"blockchain": "Ethereum",
"tokenSymbol": "ABC",
"tokenName": "Project ABC",
"tokenUrl": "https://...",
"email1": "team@project.example",
"email2": "founder@project.example",
"telegram": "@project"
}
]
}
When nothing qualifies, result is empty. Respect per-second and daily caps to avoid rate-limit errors.
When should I use GET or cURL?
- GET URL is perfect for quick scanning, bookmarking, or testing in a browser/API client.
- cURL is the fastest copy-paste for terminal-first workflows, CI checks, and scripts.
- Find more details in the API Documentation.