Developer docs
API documentation
Full REST API available on Growth, Scale, and Agency plans. Authenticate with your API key from the dashboard settings.
Authentication
All API requests require a Bearer token in the Authorization header. Get your API key from Settings.
curl -X POST https://api.leadtyzer.com/v1/leads/search \ -H "Authorization: Bearer lt_live_your_api_key" \ -H "Content-Type: application/json"
https://api.leadtyzer.com/v1Endpoints
/v1/leads/searchSubmit a new lead order with targeting criteria. Returns an order_id immediately. Use GET /v1/leads/order/{id} to poll status.
/v1/leads/order/{id}Retrieve order status and leads once delivered. Includes ai_score per lead, email_verified status, and full contact data.
/v1/leads/inventoryCheck available verified lead inventory by sector and country before placing an order. Useful for instant delivery estimation.
/v1/leads/singleEnrich a single domain or company - returns verified contacts at that company with AI scores.
/v1/account/quotaReturns your current plan, monthly quota, used quota, remaining quota, and usage billing rate for extra leads.
/v1/leads/{id}/optoutPermanently opt out a contact from your database and the LeadTYZER inventory. Required for GDPR compliance.
Standard response format
{
"status": "success",
"order_id": "ord_abc123",
"leads": [
{
"company": {
"name": "Acme Corp",
"sector": "technology",
"country": "GB",
"size": "50-200",
"website": "acme.com"
},
"contact": {
"name": "Jane Smith",
"title": "Head of Sales",
"email": "j.smith@acme.com",
"email_verified": true,
"phone": "+44 20 1234 5678",
"linkedin": "linkedin.com/in/janesmith"
},
"intelligence": {
"ai_score": 87,
"score_breakdown": { "seniority": 90, "data_freshness": 85 },
"intent_signals": ["hiring", "funding_round"]
}
}
],
"meta": {
"total": 500,
"avg_score": 84,
"verified_rate": "100%",
"delivery_seconds": 3600
}
}