curl --request GET \
--url https://assess.praxicraft.com/api/v1/public/jobs/ \
--header 'Authorization: Bearer <token>'import requests
url = "https://assess.praxicraft.com/api/v1/public/jobs/"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://assess.praxicraft.com/api/v1/public/jobs/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://assess.praxicraft.com/api/v1/public/jobs/';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://assess.praxicraft.com/api/v1/public/jobs/"
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))
}{
"next": null,
"previous": null,
"results": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"slug": "senior-data-engineer",
"title": "Senior Data Engineer",
"status": "open",
"livemode": true,
"team": {
"id": "11111111-2222-3333-4444-555555555555",
"name": "Data Hiring",
"slug": "data-hiring"
},
"position_types": [
"full_time"
],
"workplace_type": "hybrid",
"location_text": "London, UK",
"country_code": "GB",
"region": "Europe",
"expires_at": null,
"scheduled_publish_at": null,
"cv_required": true,
"auto_invite_assessment": false,
"assessment_id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
"assessment_slug": "senior-backend-screen",
"pipeline_id": null,
"pipeline_slug": null,
"application_count": 14,
"published_at": "2026-09-01T09:00:00Z",
"closed_at": null,
"created_at": "2026-08-28T12:00:00Z",
"updated_at": "2026-09-01T09:00:00Z",
"sample_task": null
}
]
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"message": "Invalid or revoked API Key.",
"code": "INVALID_API_KEY"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "RATE_LIMITED",
"message": "Rate limit exceeded. Retry later.",
"details": {
"retry_after_seconds": 14
}
}
}List job openings
Required scope:
jobs:read
Returns job openings for your organisation. Filter with status=draft|open|closed and optionally team_id / squad_id (hiring squad UUID). Path and list ids use the job slug or UUID.
Responses
| Status | When |
|---|---|
200 | Paginated list of jobs |
404 | Not used — empty list returns 200 with results: [] |
Authentication & rate limits (all endpoints)
| Status | Code | When |
|---|---|---|
401 | INVALID_API_KEY | Missing or invalid bearer token |
401 | EXPIRED_API_KEY | API key past its optional expires_at |
403 | INSUFFICIENT_SCOPE | API key lacks the required scope for this operation |
403 | IP_NOT_ALLOWED | Client IP is outside this key’s CIDR allowlist |
429 | RATE_LIMITED | Rate limit exceeded — plan-tiered reads/writes per organisation per hour |
curl --request GET \
--url https://assess.praxicraft.com/api/v1/public/jobs/ \
--header 'Authorization: Bearer <token>'import requests
url = "https://assess.praxicraft.com/api/v1/public/jobs/"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://assess.praxicraft.com/api/v1/public/jobs/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://assess.praxicraft.com/api/v1/public/jobs/';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://assess.praxicraft.com/api/v1/public/jobs/"
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))
}{
"next": null,
"previous": null,
"results": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"slug": "senior-data-engineer",
"title": "Senior Data Engineer",
"status": "open",
"livemode": true,
"team": {
"id": "11111111-2222-3333-4444-555555555555",
"name": "Data Hiring",
"slug": "data-hiring"
},
"position_types": [
"full_time"
],
"workplace_type": "hybrid",
"location_text": "London, UK",
"country_code": "GB",
"region": "Europe",
"expires_at": null,
"scheduled_publish_at": null,
"cv_required": true,
"auto_invite_assessment": false,
"assessment_id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
"assessment_slug": "senior-backend-screen",
"pipeline_id": null,
"pipeline_slug": null,
"application_count": 14,
"published_at": "2026-09-01T09:00:00Z",
"closed_at": null,
"created_at": "2026-08-28T12:00:00Z",
"updated_at": "2026-09-01T09:00:00Z",
"sample_task": null
}
]
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"message": "Invalid or revoked API Key.",
"code": "INVALID_API_KEY"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "RATE_LIMITED",
"message": "Rate limit exceeded. Retry later.",
"details": {
"retry_after_seconds": 14
}
}
}Authorizations
Organisation API key created in Assess → Developer → API Keys. Format: Bearer ct_live_<your-key> (live) or Bearer ct_test_<your-key> (test). Optional per-key CIDR allowlists return 403 IP_NOT_ALLOWED.
Query Parameters
Opaque pagination cursor — pass the value from next to fetch the next page.
Results per page, max 100 (default 20).
Alias for team_id
Filter by hiring squad UUID
Response
Public wire: expose sample_task brief on list when loaded.
100^[-a-zA-Z0-9_]+$200Show child attributes
Show child attributes
Show child attributes
Show child attributes
draft, open, closed onsite, hybrid, remote, unspecified 2552100When set on a draft, Celery auto-publishes at this UTC time.
Deprecated product path. Assessment invites happen on advance / threshold actions only — never automatically on apply.