Search Leads
GET
/api/v3/leads/searchSearch Leads by Technology
Find companies using specific technologies with optional filters. 1 credit per website returned (e.g., limit=50 returns up to 50 results = up to 50 credits).
Parameters
technologiesarrayrequiredTechnologies to search for (e.g., ["Shopify", "Stripe"])keywordstringSearch in company names, titles, descriptionsindustrystringFilter by industrytldsarrayFilter by TLDs (e.g., [".com", ".io"])sales_readybooleanOnly companies with emails/LinkedInlimitintegerResults per page (1-10,000, default: 100). 1 credit per result returned.offsetintegerPagination offsetExample Request
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://techleads.fyi/api/v3/leads/search?technologies=Shopify&sales_ready=true&limit=50"Response
{
"success": true,
"data": {
"total": 125000,
"results": [
{
"domain": "example-store.com",
"company_name": "Example Store",
"emails": ["contact@example-store.com"],
"technologies": ["Shopify", "Google Analytics", "Stripe"],
"industry": "E-commerce"
}
]
},
"meta": { "credits_used": 50, "credits_remaining": 4950 }
}