GET /jobs/list
List all active jobs for your API key.
This endpoint returns all job descriptions you’ve created that are currently active, along with their creation dates and unique IDs.
🔑 Credits
- Cost: FREE - No credits charged for listing jobs
Authentication
API key can be provided in two ways:- Header:
x-api-key: YOUR_API_KEY
- Query parameter:
api_key=YOUR_API_KEY
Query Parameters
Name | Type | Required | Description |
---|---|---|---|
api_key | string | ✅ Yes | API key for authentication (can also be in x-api-key header) |
Response Headers
Header | Description |
---|---|
X-Credits-Used | Total credits used by your API key across all endpoints |
X-Credits-Used-User | Credits used specifically for /user endpoint |
X-Credits-Used-Search | Credits used specifically for /jobs/search endpoint |
X-Credits-Used-Assess | Credits used specifically for /jobs/assess endpoint |
X-Credits-Remaining | Remaining general credits (-1 for unlimited accounts) |
X-Credits-Remaining-Search | Remaining search-specific credits (if configured) |
X-Credits-Remaining-Assess | Remaining assess-specific credits (if configured) |
X-Calls-User | Total number of calls made to /user endpoint |
X-Calls-Search | Total number of calls made to /jobs/search endpoint |
X-Calls-Assess | Total number of calls made to /jobs/assess endpoint |
Response
Returns an array of job objects with metadata.Examples
Using cURLResponse Fields
Field | Type | Description |
---|---|---|
id | string | Unique job identifier for use with other endpoints |
description | string | Original job description text |
created | string | ISO 8601 timestamp when job was created |
active | boolean | Whether the job is currently active (always true in results) |
Error Responses
Status Code | Description |
---|---|
401 | Unauthorized - Missing API key |
403 | Forbidden - Invalid API key |
500 | Internal Server Error |
Next Steps
Use the job IDs from this response with:- Job Search - Find candidates matching a specific job
- Job Assessment - Assess candidates for a specific job
Usage Notes
- Only shows jobs created with your API key
- Jobs are returned in reverse chronological order (newest first)
- All returned jobs have
active: true
(inactive jobs are filtered out) - The full job description is included in each result
- Creation timestamps are in ISO 8601 format with timezone information