Skip to main content
POST
/
v1
/
jobs
/
search
Search jobs
curl --request POST \
  --url https://api.stardex.ai/v1/jobs/search \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "offset": 0,
  "limit": 200,
  "sort_by": "<string>",
  "sort_order": "desc",
  "keywords": [
    "<string>"
  ],
  "location_keywords": [
    "<string>"
  ],
  "vector_search": "<string>",
  "is_archived": false,
  "job_status_ids_included": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "job_status_ids_excluded": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "company_ids_included": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "company_ids_excluded": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "owner_ids": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "team_member_ids": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "team_member_role_ids": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "is_public": true,
  "list_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "select_attribute_filters": [
    {
      "attribute_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "values": [],
      "excluded_values": [],
      "require_all": false,
      "include_empty": false
    }
  ],
  "numeric_attribute_filters": [
    {
      "attribute_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "min": 123,
      "max": 123,
      "include_empty": false
    }
  ],
  "date_attribute_filters": [
    {
      "attribute_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "start_date": "<string>",
      "end_date": "<string>",
      "include_empty": false
    }
  ],
  "team_member_attribute_filters": [
    {
      "attribute_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "values": [],
      "excluded_values": [],
      "require_all": false,
      "include_empty": false
    }
  ],
  "include": [
    "custom_fields"
  ]
}
'
{
  "success": true,
  "data": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "name": "Senior Software Engineer",
      "created_at": "2024-01-10T09:00:00Z",
      "is_archived": false,
      "client_company_name": "StartupXYZ",
      "client_company_id": "456e7890-e12b-34d5-a678-901234567890",
      "client_company_domain": "startupxyz.com",
      "client_company_linkedin_url": "https://www.linkedin.com/company/startupxyz",
      "job_status_name": "Active",
      "job_status_id": "789e0123-e45f-67a8-b901-234567890123",
      "candidate_count": 12,
      "location": "San Francisco, CA",
      "primary_url": "https://startupxyz.com/careers/senior-swe",
      "job_function": "Engineering",
      "open_date": "2024-01-01",
      "end_date": null,
      "currency_code": "USD",
      "salary_range": "[150000,200000]",
      "description": "We are looking for a Senior Software Engineer to join our platform team...",
      "team_members": [
        {
          "team_member_id": "234e5678-e90a-12b3-c456-789012345678",
          "email": "jane@company.com",
          "first_name": "Jane",
          "last_name": "Smith",
          "role_id": "345e6789-e01b-23c4-d567-890123456789",
          "role_name": "Team Lead"
        },
        {
          "team_member_id": "345e6789-f01b-23c4-d567-890123456789",
          "email": "bob@company.com",
          "first_name": "Bob",
          "last_name": "Johnson",
          "role_id": "456e7890-f12b-34d5-e678-901234567890",
          "role_name": "Executive Sponsor"
        }
      ],
      "custom_fields": [
        {
          "attribute_id": "c3d4e5f6-a7b8-9012-cdef-123456789012",
          "attribute_name": "Priority",
          "data_type": "single-select",
          "value": null,
          "tag": {
            "id": "d4e5f6a7-b8c9-0123-defg-234567890123",
            "name": "High"
          },
          "team_member": null
        }
      ]
    }
  ],
  "meta": {
    "total": 25,
    "offset": 0,
    "limit": 200
  }
}

Authorizations

Authorization
string
header
required

Authenticate with a Bearer token: API key, OAuth token, or session token.

Body

application/json
offset
integer
default:0

Records to skip for pagination. Defaults to 0.

Required range: x >= 0
limit
integer
default:200

Max records to return (1–200). Defaults to 200.

Required range: 1 <= x <= 200
sort_by
string

Sort column. Values: title, company, status, fee, created_at, days_since_opened, location, total_candidates, or custom_<attribute_id>. Defaults to created_at.

sort_order
enum<string>
default:desc

Sort direction. Defaults to desc (newest first).

Available options:
asc,
desc
keywords
string[]

Full-text search across job title, description, location, and company name/domain.

location_keywords
string[]

Search specifically in the job location field.

AI semantic search query (min 5 chars). Uses vector embeddings for contextual matching.

Minimum string length: 5
is_archived
boolean
default:false

Filter by archive status. Defaults to false (active jobs only).

job_status_ids_included
string<uuid>[]

Include only jobs with these status IDs. Status IDs are returned in job list/detail responses as job_status_id.

job_status_ids_excluded
string<uuid>[]

Exclude jobs with these status IDs.

company_ids_included
string<uuid>[]

Include only jobs for these client companies. Get IDs from GET /v1/companies.

company_ids_excluded
string<uuid>[]

Exclude jobs for these client companies.

owner_ids
string<uuid>[]

Filter to jobs owned by these team members (owner role). Get IDs from GET /v1/team-members.

team_member_ids
string<uuid>[]

Filter to jobs with any of these team members assigned. Get IDs from GET /v1/team-members.

team_member_role_ids
string<uuid>[]

Filter to jobs that have members with these roles. Get role IDs from GET /v1/jobs/team-member-roles.

is_public
boolean

Filter for publicly posted jobs only.

list_id
string<uuid>

Filter to jobs in this saved list.

select_attribute_filters
object[]

Filter by select/multi-select custom fields. Get attribute_id and tag IDs from GET /v1/custom-fields/jobs.

numeric_attribute_filters
object[]

Filter by numeric custom fields (min/max range). Get attribute_id from GET /v1/custom-fields/jobs.

date_attribute_filters
object[]

Filter by date custom fields (date range). Get attribute_id from GET /v1/custom-fields/jobs.

team_member_attribute_filters
object[]

Filter by team-member custom fields. Get attribute_id from GET /v1/custom-fields/jobs, team member IDs from GET /v1/team-members.

include
enum<string>[]

Extra sections to embed. Values: custom_fields. Omit for base fields only.

Available options:
custom_fields

Response

Jobs found

success
enum<boolean>
required
Available options:
true
data
object[]
required
meta
object
required