Skip to main content
POST
/
api
/
builtin
/
jobs
/
search
/builtin/jobs/search
curl --request POST \
  --url https://api.anysite.io/api/builtin/jobs/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "keyword": "python",
  "industry": "<string>",
  "location": "<string>",
  "skill": "<string>"
}
'
[
  {
    "id": "<string>",
    "@type": "@builtin_job_search_result",
    "alias": "<string>",
    "title": "<string>",
    "company": "<string>",
    "company_alias": "<string>",
    "location_text": "<string>",
    "remote_policy": "<string>",
    "salary_text": "<string>",
    "seniority": "<string>",
    "posted_text": "<string>",
    "industries": [],
    "summary": "<string>",
    "skills": [],
    "url": "<string>"
  }
]

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
keyword
string | null

Keyword to search jobs by title, company or text

Minimum string length: 1
Example:

"python"

category
enum<string> | null

Filter by job category

Available options:
ai-machine-learning,
consultant,
customer-success-experience,
cyber-security,
data-analytics,
designer,
engineering,
finance,
hr-recruiting,
legal,
marketing,
operations-support,
product-management,
program-project-management,
sales,
supply-chain-procurement
experience
enum<string> | null

Filter by experience / seniority level

Available options:
internship,
entry-level,
junior,
mid-level,
senior,
expert-leader
remote
enum<string> | null

Filter by remote work policy

Available options:
remote,
hybrid,
office
industry
string | null

Filter by industry alias (e.g. fintech, healthtech)

Minimum string length: 1
location
string | null

Filter by city alias (e.g. austin, chicago)

Minimum string length: 1
skill
string | null

Filter by required skill (e.g. Python)

Minimum string length: 1
posted_within
enum<string> | null

Only jobs posted within this many days

Available options:
1,
3,
7,
30

Response

Successful Response

id
string
required
@type
string
default:@builtin_job_search_result
alias
string | null
title
string | null
company
string | null
company_alias
string | null
location_text
string | null
remote_policy
string | null
salary_text
string | null
seniority
string | null
posted_text
string | null
industries
string[]
summary
string | null
skills
string[]
url
string | null