POST /jobs/create
Create a new job description entry with AI-generated summaries for use with search and assessment endpoints.
This endpoint processes your job description and generates multiple summary versions optimized for different use cases. The job is stored with a unique ID for use with other job management endpoints.
🔑 Credits
- Cost: FREE - No credits charged for job creation
Authentication
API key can be provided in two ways:- Header:
x-api-key: YOUR_API_KEY
- Query parameter:
api_key=YOUR_API_KEY
Request Body (JSON)
Name | Type | Required | Description |
---|---|---|---|
api_key | string | ✅ Yes | API key for authentication (can also be in x-api-key header) |
description | string | ✅ Yes | Job description text (30-10,000 characters) |
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 a job ID that can be used with search and assessment endpoints.Examples
Using cURLError Responses
Status Code | Description |
---|---|
400 | Bad Request - Invalid or missing description |
401 | Unauthorized - Missing API key |
403 | Forbidden - Invalid API key |
500 | Internal Server Error |
Next Steps
After creating a job, use the returned job ID with:- Job Search - Find candidates matching this job
- Job Assessment - Assess specific candidates for this job
- Jobs List - View all your active jobs