Use Cases

Lead Generation Tools

Find companies using your competitors' products and target them with your solution.

example.py
python
import requests

api_key = "YOUR_API_KEY"
headers = {"Authorization": f"Bearer {api_key}"}

# Find companies using competitor tools
response = requests.get(
    "https://techleads.fyi/api/v3/leads/search",
    headers=headers,
    params={
        "technologies": ["HubSpot", "Salesforce"],
        "sales_ready": True,
        "limit": 100
    }
)

leads = response.json()["data"]["results"]
for lead in leads:
    print(f"{lead['company_name']}: {lead['emails']}")

Market Research Dashboards

Analyze technology adoption across industries, countries, or company sizes.

example.js
javascript
// Find all companies using React in the US
const response = await fetch(
  'https://techleads.fyi/api/v3/leads/search?' +
  'technologies=React&country=US&limit=1000',
  {
    headers: {
      'Authorization': `Bearer ${API_KEY}`
    }
  }
);

const data = await response.json();
console.log(`Found ${data.data.total} companies using React`);

Competitive Intelligence

Track which technologies your prospects are using before sales calls.

example.py
python
def get_company_tech_stack(domain):
    """Get complete technology stack for a company"""
    response = requests.get(
        f"https://techleads.fyi/api/v3/domains/{domain}",
        headers={"Authorization": f"Bearer {api_key}"}
    )
    return response.json()["data"]["technologies"]

# Before a sales call
tech_stack = get_company_tech_stack("prospect.com")
if "Shopify" in tech_stack:
    print("They're using Shopify - pitch our Shopify integration!")

Need Help?