CV
CV
Zarzadzaj CV: przegladaj, pobieraj, analizuj z plikow i renderuj do PDF.
Lista CV
GET /v1/resumesZwraca wszystkie CV nalezace do uwierzytelnionego uzytkownika.
Zapytanie
curl https://api.laddro.com/v1/resumes \
-H "x-api-key: YOUR_API_KEY"Odpowiedz
{
"data": [
{
"id": "res_abc123",
"title": "Software Engineer Resume",
"createdAt": "2026-05-01T10:00:00Z",
"updatedAt": "2026-05-02T15:30:00Z"
}
]
}Pobierz CV
GET /v1/resumes/{resumeId}Zwraca pelne dane CV wraz ze wszystkimi sekcjami.
Parametry
| Parametr | Typ | Lokalizacja | Opis |
|---|---|---|---|
resumeId | string | path | ID CV |
Zapytanie
curl https://api.laddro.com/v1/resumes/res_abc123 \
-H "x-api-key: YOUR_API_KEY"Odpowiedz
{
"data": {
"id": "res_abc123",
"title": "Software Engineer Resume",
"sections": {
"header": {
"name": "Jane Smith",
"email": "[email protected]",
"phone": "+49 170 1234567",
"location": "Berlin, Germany"
},
"summary": "Experienced software engineer...",
"experience": [...],
"education": [...],
"skills": [...],
"languages": [...]
}
}
}Bledy
| Status | Opis |
|---|---|
401 | Brakujacy lub nieprawidlowy klucz API |
404 | CV nie znalezione |
Przeanalizuj CV
POST /v1/resumes/parseWgraj plik PDF lub DOCX, aby wyodrebnic ustrukturyzowane dane CV. Plik jest analizowany przy uzyciu AI w celu identyfikacji sekcji, dat i tresci.
Zapytanie
curl https://api.laddro.com/v1/resumes/parse \
-H "x-api-key: YOUR_API_KEY" \
-F "[email protected]"Parametry
| Parametr | Typ | Lokalizacja | Opis |
|---|---|---|---|
file | file | form-data | Plik PDF lub DOCX (max 10MB) |
Odpowiedz
{
"data": {
"id": "res_def456",
"title": "Parsed Resume",
"sections": {
"header": { ... },
"summary": "...",
"experience": [...],
"education": [...],
"skills": [...]
}
}
}Bledy
| Status | Opis |
|---|---|
400 | Nieprawidlowy format pliku (tylko PDF/DOCX) |
401 | Brakujacy lub nieprawidlowy klucz API |
402 | Brak kredytow |
413 | Plik za duzy (max 10MB) |
Renderuj CV do PDF
PUT /v1/resumes/{resumeId}/renderRenderuje CV z wybranym szablonem i zwraca plik PDF.
Parametry
| Parametr | Typ | Lokalizacja | Opis |
|---|---|---|---|
resumeId | string | path | ID CV |
templateId | string | body | Szablon do uzycia (np. graphite) |
fontId | string | body | Czcionka do uzycia (opcjonalnie) |
Zapytanie
curl https://api.laddro.com/v1/resumes/res_abc123/render \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "templateId": "graphite" }' \
--output resume.pdfOdpowiedz
Zwraca dane binarne application/pdf.
Bledy
| Status | Opis |
|---|---|
401 | Brakujacy lub nieprawidlowy klucz API |
402 | Brak kredytow |
404 | CV lub szablon nie znaleziony |