Skip to main content
POST
/
api
/
ziprecruiter
/
companies
/ziprecruiter/companies
curl --request POST \
  --url https://api.anysite.io/api/ziprecruiter/companies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "timeout": 300
}
'
[
  {
    "name": "<string>",
    "@type": "@ziprecruiter_company",
    "alias": "<string>",
    "image": "<string>",
    "description": "<string>",
    "industries": [],
    "website": "<string>",
    "company_size": "<string>",
    "founded_year": "<string>",
    "hq_street": "<string>",
    "hq_city": "<string>",
    "hq_state": "<string>",
    "hq_zip": "<string>",
    "hq_country": "<string>",
    "hq_location": "<string>",
    "facebook_url": "<string>",
    "instagram_url": "<string>",
    "twitter_url": "<string>",
    "similar_companies": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
company
string
required

ZipRecruiter company alias, or a company URL containing it

Minimum string length: 1
Example:

"NextDeavor-Inc."

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

name
string
required
@type
string
default:@ziprecruiter_company
alias
string | null
image
string | null
description
string | null
industries
string[]
website
string | null
company_size
string | null
founded_year
string | null
hq_street
string | null
hq_city
string | null
hq_state
string | null
hq_zip
string | null
hq_country
string | null
hq_location
string | null
facebook_url
string | null
instagram_url
string | null
twitter_url
string | null
similar_companies
ZiprecruiterSimilarCompany · object[]