curl --request POST \
--url https://api.technologychecker.io/v1/companies/batch \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"domains": [
"stripe.com",
"shopify.com"
]
}
'{
"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,
"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
}
],
"found": 2,
"not_found": []
}
}Look up company data for multiple domains in a single request. Returns full details including description and specialties.
curl --request POST \
--url https://api.technologychecker.io/v1/companies/batch \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"domains": [
"stripe.com",
"shopify.com"
]
}
'{
"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,
"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
}
],
"found": 2,
"not_found": []
}
}API key in format tapi_live_[32-char] (live) or tapi_test_[32-char] (test)
Array of domains to look up (max 100)
100["stripe.com", "shopify.com"]Was this page helpful?