CV API
The CV API provides endpoints for uploading, parsing, and managing job seeker CVs.Base URL
Endpoints Overview
Key Documentation
- Request Upload URL - Generate a presigned URL for CV upload
- Upload CV File - Upload the file to storage using the presigned URL
- Confirm Upload - Confirm upload and trigger parsing
- Preview Parsed Data - Review parsed data before saving
- Confirm Parsed Data - Save parsed data to profile
- Get Candidate CV URL - Get candidate CV download URL (Company)
CV Upload Flow
1
Request URL
Call POST /cv/presigned-url to get an upload URL
2
Upload File
Upload the file using PUT directly to cloud storage
3
Confirm Upload
Call POST /cv/confirm to trigger NLP parsing
CV Parse Flow
1
Preview Data
Call GET /cv-parse/preview to see parsed results
2
Confirm & Save
Call POST /cv-parse/confirm to save to your profile
Skills Verification
When confirming parsed data, skills extracted from CV are saved withverified: true, while manually added skills are saved with verified: false.
See detailed documentation for each endpoint in the API Reference section.