Common questions about using Klypn — for applicants and for companies integrating the API.
.pdf and we'll parse it./p/<id> is the public profile page humans click. The API URL /api/v1/applicant/<id> is what a company's server hits to get your data as structured JSON. Same ID, two formats.Authorization: Bearer <key>. Server-side only — never embed the key in browser code, mobile apps, or commit it to git. If you ever expose it, regenerate it from your dashboard.full_name, title, bio, phone, linkedin, github, website, location, and country are strings that can be empty. experience, education, and skills are always arrays but can be empty. Treat every non-ID field as nullable.resume_url changes — new filename in our object store. The old URL stops working. If you cached it, re-fetch from /api/v1/applicant/:id to get the new one./api/v1/*. We won't break v1 fields without bumping to v2. New fields may be added to the JSON response — your code should ignore unknown keys, not error on them.