curl --request GET \
--url https://api.stardex.ai/v1/jobs/{id}/applicants \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.stardex.ai/v1/jobs/{id}/applicants"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.stardex.ai/v1/jobs/{id}/applicants', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.stardex.ai/v1/jobs/{id}/applicants",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.stardex.ai/v1/jobs/{id}/applicants"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.stardex.ai/v1/jobs/{id}/applicants")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.stardex.ai/v1/jobs/{id}/applicants")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": [
{
"id": "890e1234-b56c-78d9-e012-345678901234",
"job_id": "123e4567-e89b-12d3-a456-426614174000",
"job_posting_id": "901e2345-c67d-89e0-f123-456789012345",
"person_id": null,
"name": "Alex Rivera",
"email": "alex.rivera@example.com",
"status": "new",
"linkedin_profile_url": "https://www.linkedin.com/in/alexrivera",
"portfolio_url": "https://alexrivera.dev",
"additional_information": "Available to start in two weeks.",
"resume_url": "https://project.supabase.co/storage/v1/object/sign/job-application-documents/example-resume",
"cover_letter_url": "https://project.supabase.co/storage/v1/object/sign/job-application-documents/example-cover-letter",
"not_a_fit_note": null,
"fields_response": {
"fields": [
{
"field_id": "full_name",
"type": "text",
"value": "Alex Rivera"
},
{
"field_id": "email",
"type": "email",
"value": "alex.rivera@example.com"
},
{
"field_id": "phone",
"type": "phone",
"value": "+1-555-0100"
},
{
"field_id": "linkedin_profile_url",
"type": "url",
"value": "https://www.linkedin.com/in/alexrivera"
},
{
"field_id": "cover_letter",
"type": "textarea",
"value": "I am excited to apply for this role."
},
{
"field_id": "years_experience",
"type": "number",
"value": 8
},
{
"field_id": "start_date",
"type": "date",
"value": "2024-03-01"
},
{
"field_id": "work_authorization",
"type": "select",
"value": "US Citizen"
},
{
"field_id": "skills",
"type": "multi_select",
"value": [
"TypeScript",
"React"
]
},
{
"field_id": "resume_file_path",
"type": "file",
"value": {
"name": "Alex_Rivera_Resume.pdf",
"size": 245760,
"type": "application/pdf",
"url": "https://project.supabase.co/storage/v1/object/sign/job-application-documents/example-resume"
}
}
]
},
"created_at": "2024-02-01T15:45:00Z",
"updated_at": "2024-02-01T15:45:00Z"
}
],
"meta": {
"total": 8,
"offset": 0,
"limit": 20
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}List job applicants
Retrieve a paginated list of inbound applications submitted through the public job posting form (the Applicants tab).
This is not the job pipeline. Pipeline candidates — people already added to a stage — are returned by GET /v1/jobs/{id}/candidates.
Status values: new (unprocessed), selected (added to the job pipeline; person_id is then set), not_a_fit (rejected from the Applicants tab).
File fields and resume_url / cover_letter_url are short-lived signed download URLs. Re-fetch this endpoint when a URL expires (about 15 minutes).
Jobs with no public posting return an empty list. Unknown job IDs return 404.
curl --request GET \
--url https://api.stardex.ai/v1/jobs/{id}/applicants \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.stardex.ai/v1/jobs/{id}/applicants"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.stardex.ai/v1/jobs/{id}/applicants', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.stardex.ai/v1/jobs/{id}/applicants",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.stardex.ai/v1/jobs/{id}/applicants"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.stardex.ai/v1/jobs/{id}/applicants")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.stardex.ai/v1/jobs/{id}/applicants")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": [
{
"id": "890e1234-b56c-78d9-e012-345678901234",
"job_id": "123e4567-e89b-12d3-a456-426614174000",
"job_posting_id": "901e2345-c67d-89e0-f123-456789012345",
"person_id": null,
"name": "Alex Rivera",
"email": "alex.rivera@example.com",
"status": "new",
"linkedin_profile_url": "https://www.linkedin.com/in/alexrivera",
"portfolio_url": "https://alexrivera.dev",
"additional_information": "Available to start in two weeks.",
"resume_url": "https://project.supabase.co/storage/v1/object/sign/job-application-documents/example-resume",
"cover_letter_url": "https://project.supabase.co/storage/v1/object/sign/job-application-documents/example-cover-letter",
"not_a_fit_note": null,
"fields_response": {
"fields": [
{
"field_id": "full_name",
"type": "text",
"value": "Alex Rivera"
},
{
"field_id": "email",
"type": "email",
"value": "alex.rivera@example.com"
},
{
"field_id": "phone",
"type": "phone",
"value": "+1-555-0100"
},
{
"field_id": "linkedin_profile_url",
"type": "url",
"value": "https://www.linkedin.com/in/alexrivera"
},
{
"field_id": "cover_letter",
"type": "textarea",
"value": "I am excited to apply for this role."
},
{
"field_id": "years_experience",
"type": "number",
"value": 8
},
{
"field_id": "start_date",
"type": "date",
"value": "2024-03-01"
},
{
"field_id": "work_authorization",
"type": "select",
"value": "US Citizen"
},
{
"field_id": "skills",
"type": "multi_select",
"value": [
"TypeScript",
"React"
]
},
{
"field_id": "resume_file_path",
"type": "file",
"value": {
"name": "Alex_Rivera_Resume.pdf",
"size": 245760,
"type": "application/pdf",
"url": "https://project.supabase.co/storage/v1/object/sign/job-application-documents/example-resume"
}
}
]
},
"created_at": "2024-02-01T15:45:00Z",
"updated_at": "2024-02-01T15:45:00Z"
}
],
"meta": {
"total": 8,
"offset": 0,
"limit": 20
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}Authorizations
Authenticate with a Bearer token: API key, OAuth token, or session token.
Path Parameters
Job UUID
Query Parameters
Records to skip for pagination. Defaults to 0.
x >= 0Max records per page (1–100). Defaults to 100.
1 <= x <= 100Comma-separated applicant statuses to include. Values: new, selected, not_a_fit. Omit to return all statuses.
Case-insensitive search across applicant name and email.
Include applicants submitted on or after this ISO 8601 datetime (e.g. "2024-01-01T00:00:00Z").
Include applicants submitted on or before this ISO 8601 datetime (e.g. "2024-12-31T23:59:59Z").
Was this page helpful?