TechLeads API Documentation
Access 450M+ websites with real-time technographics data. Find companies using specific technologies, discover decision makers, and build powerful lead generation tools.
Base URL:
https://techleads.fyi/api/v3Quick Start
1
Sign up
Create an account at techleads.fyi
2
Choose your plan
Free: 50 credits/month |Founders: 5,000 credits/month. Additional credits can be purchased.
3
Get your API key
Create API keys in your Profile
Your First API Call
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://techleads.fyi/api/v3/leads/search?technologies=Shopify&limit=10"Response
{
"success": true,
"data": {
"total": 125000,
"results": [
{
"domain": "example-store.com",
"company_name": "Example Store",
"emails": ["contact@example-store.com"],
"phones": ["+1-555-0123"],
"technologies": ["Shopify", "Google Analytics", "Stripe"],
"linkedin": "https://linkedin.com/company/example-store",
"industry": "E-commerce",
"rank": 1250
}
]
},
"meta": {
"credits_used": 2,
"credits_remaining": 4998
}
}