Skip to main content

API Keys

The top of the page shows your API quotas: per‑second cap and daily cap. 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.

Create & manage

  • Click Create API Key to generate a token (copy and store securely).
  • You can later copy, rotate, or revoke any key.

Endpoints

Pass your token as a query parameter: apikey=YourApiKeyToken. Responses are JSON with status, message, and a result array.

Recent (24h)

GET /api?module=lead&action=viewRecentLeads&apikey=YourApiKeyToken

Returns leads assigned to your account in the last 24 hours.

Latest (with limit)

GET /api?module=lead&action=viewLatestLeads&limit=100&apikey=YourApiKeyToken

limit is clamped to your plan maximum (Free up to ~100; Paid up to ~1000). Exceeding it returns a clear error.

Sample response shape

{
"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.