Quickstart
Make your first API call in 2 minutes.
1. Get an API Key
Sign in at console.laddro.com and create an API key.
2. List Templates
curl https://api.laddro.com/v1/templatesThis is a public endpoint — no authentication required.
3. List Your Resumes
curl https://api.laddro.com/v1/resumes \
-H "x-api-key: YOUR_API_KEY"4. Parse a Resume
Upload a PDF or DOCX to extract structured resume data:
curl https://api.laddro.com/v1/resumes/parse \
-H "x-api-key: YOUR_API_KEY" \
-F "[email protected]"5. Tailor a Resume
Send a resume and job description to get AI-powered suggestions:
curl https://api.laddro.com/v1/tailor \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"resumeId": "your-resume-id",
"jobDescription": "Senior Frontend Engineer at..."
}'This endpoint supports SSE streaming. Add Accept: text/event-stream for real-time responses.
6. Export to PDF
curl https://api.laddro.com/v1/export \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"resumeId": "your-resume-id",
"templateId": "graphite"
}' \
--output resume.pdfNext Steps
- Authentication — API key management and security
- API Reference — Full endpoint documentation
- SDKs — Use an official library instead of raw HTTP
Last updated on