Skip to main content
GET
/
v1
/
jobs
List jobs (deprecated)
curl --request GET \
  --url https://api.stardex.ai/v1/jobs \
  --header 'Authorization: Bearer <token>'
{
  "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": 20
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

offset
integer | null
default:0

Records to skip for pagination. Defaults to 0.

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

Max records per page (1–100). Defaults to 100.

Required range: 1 <= x <= 100
is_archived
boolean

Filter by archive status. Omit for all jobs, true for archived only, false for active only.

team_member_id
string<uuid>

Filter to jobs where this team member is assigned. Get IDs from GET /v1/team-members.

team_member_email
string

Filter by team member email. Fallback when team_member_id is not available.

team_member_role_id
string<uuid>

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

team_member_role_name
string

Filter by role name (e.g. "Executive Sponsor"). Fallback when team_member_role_id is not available.

include
string

Comma-separated extra sections. Values: custom_fields. Omit for base fields only.

Response

Jobs fetched

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