List job openings
curl --request GET \
--url https://api.alpharun.com/api/v1/job-openings \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.alpharun.com/api/v1/job-openings"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.alpharun.com/api/v1/job-openings', 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.alpharun.com/api/v1/job-openings",
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.alpharun.com/api/v1/job-openings"
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.alpharun.com/api/v1/job-openings")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.alpharun.com/api/v1/job-openings")
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{
"data": {
"job_openings": [
{
"id": "2f4ac4d8-8ec7-48d1-81cf-9a9552d6fd8d",
"name": "Store Manager - San Francisco",
"status": "live",
"created_at": "2026-06-24T18:12:48.513Z",
"interview_count": 42,
"pending_interview_count": 7,
"job_type": {
"id": "91f3c3e7-2b1d-4461-a4a1-b4f6eb8480bf",
"name": "Store Manager"
}
},
{
"id": "a0b84468-9ce3-4f7f-b5c4-44c130bb9b77",
"name": "Barista - Oakland",
"status": "paused",
"created_at": "2026-06-22T15:04:31.221Z",
"interview_count": 18,
"pending_interview_count": 3,
"job_type": null
}
]
},
"total_pages": 3,
"total": 54,
"page": 1,
"limit": 20
}{
"error": 123,
"message": "<string>"
}Hiring
List Job Openings
Returns a paginated list of hiring job openings for the company. Paused job openings are included; deleted and internal training records are excluded. Use GET /job-openings/{JOB_OPENING_ID} to fetch full details for a single job opening.
GET
/
job-openings
List job openings
curl --request GET \
--url https://api.alpharun.com/api/v1/job-openings \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.alpharun.com/api/v1/job-openings"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.alpharun.com/api/v1/job-openings', 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.alpharun.com/api/v1/job-openings",
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.alpharun.com/api/v1/job-openings"
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.alpharun.com/api/v1/job-openings")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.alpharun.com/api/v1/job-openings")
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{
"data": {
"job_openings": [
{
"id": "2f4ac4d8-8ec7-48d1-81cf-9a9552d6fd8d",
"name": "Store Manager - San Francisco",
"status": "live",
"created_at": "2026-06-24T18:12:48.513Z",
"interview_count": 42,
"pending_interview_count": 7,
"job_type": {
"id": "91f3c3e7-2b1d-4461-a4a1-b4f6eb8480bf",
"name": "Store Manager"
}
},
{
"id": "a0b84468-9ce3-4f7f-b5c4-44c130bb9b77",
"name": "Barista - Oakland",
"status": "paused",
"created_at": "2026-06-22T15:04:31.221Z",
"interview_count": 18,
"pending_interview_count": 3,
"job_type": null
}
]
},
"total_pages": 3,
"total": 54,
"page": 1,
"limit": 20
}{
"error": 123,
"message": "<string>"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Page number to retrieve. Defaults to 1.
Required range:
x >= 1Response
Job openings retrieved successfully
⌘I