Skip to main content
POST
/
api
/
remoteok
/
jobs
/remoteok/jobs
curl --request POST \
  --url https://api.anysite.io/api/remoteok/jobs \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "job": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "position": "<string>",
    "@type": "@remoteok_job",
    "alias": "<string>",
    "company": "<string>",
    "description": "<string>",
    "tags": [],
    "location": "<string>",
    "image": "<string>",
    "apply_url": "<string>",
    "url": "<string>",
    "salary": {
      "@type": "@remoteok_salary",
      "currency": "<string>",
      "min_value": 123,
      "max_value": 123,
      "period": "<string>"
    },
    "employment_type": "<string>",
    "industry": "<string>",
    "job_location_type": "<string>",
    "applicant_location_requirements": [],
    "work_hours": "<string>",
    "job_benefits": [],
    "is_direct_apply": true,
    "valid_through": "<string>",
    "created_at": "<string>",
    "epoch": 123,
    "hiring_organization": {
      "@type": "@remoteok_organization",
      "name": "<string>",
      "url": "<string>",
      "image": "<string>"
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
job
string
required

Job id, slug, or RemoteOK job URL

Minimum string length: 1
Examples:

"1133392"

"remote-template-pizza-pilgrims-1133392"

"https://remoteok.com/remote-jobs/remote-template-pizza-pilgrims-1133392"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
position
string
required
@type
string
default:@remoteok_job
alias
string | null
company
string | null
description
string | null
tags
string[]
location
string | null
image
string | null
apply_url
string | null
url
string | null
salary
RemoteokSalary · object
employment_type
string | null
industry
string | null
job_location_type
string | null
applicant_location_requirements
string[]
work_hours
string | null
job_benefits
string[]
is_direct_apply
boolean | null
valid_through
string | null
created_at
string | null
epoch
integer | null
hiring_organization
RemoteokOrganization · object