Laddro DocsLaddro Docs

CV

CV

Zarzadzaj CV: przegladaj, pobieraj, analizuj z plikow i renderuj do PDF.

Lista CV

GET /v1/resumes

Zwraca 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

ParametrTypLokalizacjaOpis
resumeIdstringpathID 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

StatusOpis
401Brakujacy lub nieprawidlowy klucz API
404CV nie znalezione

Przeanalizuj CV

POST /v1/resumes/parse

Wgraj 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

ParametrTypLokalizacjaOpis
filefileform-dataPlik PDF lub DOCX (max 10MB)

Odpowiedz

{
  "data": {
    "id": "res_def456",
    "title": "Parsed Resume",
    "sections": {
      "header": { ... },
      "summary": "...",
      "experience": [...],
      "education": [...],
      "skills": [...]
    }
  }
}

Bledy

StatusOpis
400Nieprawidlowy format pliku (tylko PDF/DOCX)
401Brakujacy lub nieprawidlowy klucz API
402Brak kredytow
413Plik za duzy (max 10MB)

Renderuj CV do PDF

PUT /v1/resumes/{resumeId}/render

Renderuje CV z wybranym szablonem i zwraca plik PDF.

Parametry

ParametrTypLokalizacjaOpis
resumeIdstringpathID CV
templateIdstringbodySzablon do uzycia (np. graphite)
fontIdstringbodyCzcionka 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.pdf

Odpowiedz

Zwraca dane binarne application/pdf.

Bledy

StatusOpis
401Brakujacy lub nieprawidlowy klucz API
402Brak kredytow
404CV lub szablon nie znaleziony

On this page