curl --request GET \
--url https://api.technologychecker.io/v1/companies \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"companies": [
{
"domain": "stripe.com",
"subdomain": "<string>",
"company_name": "Stripe, Inc.",
"linkedin_url": "linkedin.com/company/stripe",
"industry": "Technology, Information and Internet",
"industry_code": 6,
"country": "united states",
"city": "south san francisco",
"state": "california",
"founded": 2010,
"employees": "1001-5000",
"company_type": "Privately Held",
"associated_members": 12741
}
],
"total": 592403,
"limit": 50,
"offset": 0
}
}Search and filter companies with comprehensive criteria. Results are sorted by associated LinkedIn members (descending).
curl --request GET \
--url https://api.technologychecker.io/v1/companies \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"companies": [
{
"domain": "stripe.com",
"subdomain": "<string>",
"company_name": "Stripe, Inc.",
"linkedin_url": "linkedin.com/company/stripe",
"industry": "Technology, Information and Internet",
"industry_code": 6,
"country": "united states",
"city": "south san francisco",
"state": "california",
"founded": 2010,
"employees": "1001-5000",
"company_type": "Privately Held",
"associated_members": 12741
}
],
"total": 592403,
"limit": 50,
"offset": 0
}
}API key in format tapi_live_[32-char] (live) or tapi_test_[32-char] (test)
Filter by country (case-insensitive)
Filter by city (case-insensitive)
Filter by state (case-insensitive)
Filter by industry (case-insensitive)
LinkedIn industry code (1–201)
1 <= x <= 201Employee range
1-1, 1-10, 2-10, 11-50, 51-200, 201-500, 501-1000, 1001-5000, 5001-10000, 10001+ Company type
Privately Held, Self-Owned, Partnership, Self-Employed, Public Company, Nonprofit, Educational, Government Agency Minimum founding year (1800–2025)
1800 <= x <= 2025Maximum founding year (1800–2025)
1800 <= x <= 2025Text search in company name and description (min 2 characters)
2Results per page (max 100)
x <= 100Pagination offset
Was this page helpful?