Skip to main content
POST
/
api
/
indiehackers
/
jobs
/
search
/indiehackers/jobs/search
curl --request POST \
  --url https://api.anysite.io/api/indiehackers/jobs/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "query": "",
  "product": "pitchmap"
}
'
[
  {
    "id": "<string>",
    "@type": "IndiehackersJob",
    "post_id": "<string>",
    "job_title": "<string>",
    "role": "<string>",
    "text": "<string>",
    "tags": [],
    "min_salary": 123,
    "max_salary": 123,
    "payment_period": "<string>",
    "location": "<string>",
    "location_timezone": "<string>",
    "view_count": 123,
    "reply_count": 123,
    "link_click_count": 123,
    "part_number": 123,
    "product_id": "<string>",
    "product_name": "<string>",
    "product_tagline": "<string>",
    "product_description": "<string>",
    "user_id": "<string>",
    "username": "<string>",
    "created_at": 123,
    "updated_at": 123,
    "closed_at": 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
query
string
default:""

Free-text search over job title, role and description

Examples:

"engineer"

"designer"

product
string | null

Restrict to jobs posted for a product slug

Example:

"pitchmap"

Response

Successful Response

id
string
required
@type
string
default:IndiehackersJob
post_id
string | null
job_title
string | null
role
string | null
text
string | null
tags
string[]
min_salary
number | null
max_salary
number | null
payment_period
string | null
location
string | null
location_timezone
string | null
view_count
integer | null
reply_count
integer | null
part_number
integer | null
product_id
string | null
product_name
string | null
product_tagline
string | null
product_description
string | null
user_id
string | null
username
string | null
created_at
integer | null
updated_at
integer | null
closed_at
integer | null