Skip to main content
POST
/
api
/
weworkremotely
/
companies
/weworkremotely/companies
curl --request POST \
  --url https://api.anysite.io/api/weworkremotely/companies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "timeout": 300
}
'
[
  {
    "alias": "<string>",
    "name": "<string>",
    "@type": "@weworkremotely_company",
    "image": "<string>",
    "headquarters": "<string>",
    "website_url": "<string>",
    "size": "<string>",
    "industry": "<string>",
    "established_year": 123,
    "years_remote": "<string>",
    "is_top_100": false,
    "jobs_posted_count": 123,
    "jobs": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
company
string
required

Company alias or We Work Remotely company URL

Minimum string length: 1
Examples:

"close"

"https://weworkremotely.com/company/close"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

alias
string
required
name
string
required
@type
string
default:@weworkremotely_company
image
string | null
headquarters
string | null
website_url
string | null
size
string | null
industry
string | null
established_year
integer | null
years_remote
string | null
is_top_100
boolean
default:false
jobs_posted_count
integer | null
jobs
WeworkremotelyCompanyJob · object[]