Skip to main content
POST
/
api
/
remoteok
/
jobs
/
search
/remoteok/jobs/search
curl --request POST \
  --url https://api.anysite.io/api/remoteok/jobs/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "tags": []
}
'
[
  {
    "id": "<string>",
    "position": "<string>",
    "@type": "@remoteok_job_summary",
    "alias": "<string>",
    "company": "<string>",
    "description": "<string>",
    "tags": [],
    "location": "<string>",
    "salary_min": 123,
    "salary_max": 123,
    "image": "<string>",
    "apply_url": "<string>",
    "url": "<string>",
    "created_at": "<string>",
    "epoch": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Max number of jobs to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
tags
string[]

Filter jobs by one or more tags (skills, categories, or job types). Multiple tags are combined with AND — a job must match every tag. Omit to get the latest jobs.

Examples:
["python", "senior"]
["design"]
["customer support"]

Response

Successful Response

id
string
required
position
string
required
@type
string
default:@remoteok_job_summary
alias
string | null
company
string | null
description
string | null
tags
string[]
location
string | null
salary_min
integer | null
salary_max
integer | null
image
string | null
apply_url
string | null
url
string | null
created_at
string | null
epoch
integer | null