Skip to main content
POST
/
api
/
inhersight
/
companies
/inhersight/companies
curl --request POST \
  --url https://api.anysite.io/api/inhersight/companies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "alias": "<string>",
    "name": "<string>",
    "url": "<string>",
    "@type": "InhersightCompany",
    "composite_score": 123,
    "website": "<string>",
    "ticker": "<string>",
    "industry": "<string>",
    "industry_group": "<string>",
    "headquarters": "<string>",
    "other_locations": [],
    "is_fully_remote": true,
    "employee_range": "<string>",
    "size": "<string>",
    "company_type": "<string>",
    "image": "<string>",
    "uuid": "<string>",
    "is_valid": true,
    "is_top_company": true,
    "rating_count": 123,
    "participant_count": 123,
    "description": "<string>",
    "has_indeed_jobs": true,
    "branding": {
      "employer_id": 123,
      "@type": "InhersightEmployerBranding",
      "has_branding": true,
      "has_enhanced_branding": true,
      "headline": "<string>",
      "description": "<string>",
      "website": "<string>",
      "banner": "<string>",
      "twitter": "<string>",
      "facebook": "<string>",
      "linkedin": "<string>",
      "instagram": "<string>",
      "pinterest": "<string>",
      "youtube": "<string>",
      "github": "<string>"
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
company
string
required

Company alias (the URL segment, e.g. 'aro-homes'), numeric company id, or a full company profile URL. Resolve the alias via /inhersight/companies/search if you only have the name.

Minimum string length: 1
Pattern: ^(?:https?://[^\s]+|[A-Za-z0-9][A-Za-z0-9._-]*)$
Examples:

"aro-homes"

"297729"

"https://www.inhersight.com/company/aro-homes"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
alias
string
required
name
string
required
url
string
required
@type
string
default:InhersightCompany
composite_score
number | null
website
string | null
ticker
string | null
industry
string | null
industry_group
string | null
headquarters
string | null
other_locations
string[]
is_fully_remote
boolean | null
employee_range
string | null
size
string | null
company_type
string | null
image
string | null
uuid
string | null
is_valid
boolean | null
is_top_company
boolean | null
rating_count
integer | null
participant_count
integer | null
description
string | null
has_indeed_jobs
boolean | null
branding
object | null