curl --request GET \
--url https://api.technologychecker.io/v1/company/{domain} \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"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,
"description": "Stripe builds programmable financial services. Millions of companies—from the world's largest enterprises to the most ambitious startups—use Stripe to accept payments, grow their revenue, and accelerate new business opportunities.",
"specialties": null
}
}Get detailed company information for a specific domain from the LinkedIn company database (25.4M records). Returns firmographic data including industry, location, employee count, and description.
curl --request GET \
--url https://api.technologychecker.io/v1/company/{domain} \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"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,
"description": "Stripe builds programmable financial services. Millions of companies—from the world's largest enterprises to the most ambitious startups—use Stripe to accept payments, grow their revenue, and accelerate new business opportunities.",
"specialties": null
}
}Where does the company data come from?
What if the company isn't found?
NOT_FOUND. Not every domain has a matching LinkedIn company record. The database covers 25.4M companies, so smaller or newer businesses might not be included yet. You’re not charged credits for 404 responses.Does this endpoint also return the company's technology stack?
GET /v1/domain/{domain}. Combine both endpoints to build a complete company profile with tech stack data — that’s 2 credits total.API key in format tapi_live_[32-char] (live) or tapi_test_[32-char] (test)
The domain to look up (e.g., stripe.com)
"stripe.com"
Was this page helpful?