Skip to main content
POST
/
api
/
indeed
/
companies
/indeed/companies
curl --request POST \
  --url https://api.anysite.io/api/indeed/companies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "timeout": 300
}
'
[
  {
    "name": "<string>",
    "alias": "<string>",
    "url": "<string>",
    "@type": "@indeed_company",
    "image": "<string>",
    "description": "<string>",
    "rating": 123,
    "review_count": 123,
    "salary_count": 123,
    "job_count": 123,
    "happiness_score": 123,
    "ceo_approval": 123,
    "industry": "<string>",
    "employee_range": "<string>",
    "revenue": "<string>",
    "founded_year": 123,
    "headquarters": "<string>",
    "website_url": "<string>",
    "review_categories": {
      "@type": "@indeed_review_categories",
      "work_life_balance": 123,
      "compensation_benefits": 123,
      "job_security_advancement": 123,
      "management": 123,
      "culture": 123
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
company
string
required

Indeed company alias, or a company URL containing it

Minimum string length: 1
Examples:

"Neuberger-Berman"

"https://www.indeed.com/cmp/Neuberger-Berman"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

name
string
required
alias
string
required
url
string
required
@type
string
default:@indeed_company
image
string | null
description
string | null
rating
number | null
review_count
integer | null
salary_count
integer | null
job_count
integer | null
happiness_score
integer | null
ceo_approval
integer | null
industry
string | null
employee_range
string | null
revenue
string | null
founded_year
integer | null
headquarters
string | null
website_url
string | null
review_categories
IndeedReviewCategories · object