Documents

Resume parsing

A resume or CV into a structured candidate profile: contact, skills, experience, education, and links.

POST /v1/resume$0.08/resume · 8 credits, charged only on success

Send this

{
  "fileUrl": "https://…/resume.pdf"
}

Every response carries usage — the credits burned and your remaining balance. A failed call never burns credits.

Try it live against your own key in the interactive reference; every account gets 500 free credits a month, no card.

Get this back

{
  "name": "Maya Chen",
  "email": "maya@…",
  "phone": "+1 415 …",
  "location": "Brooklyn, NY",
  "headline": "Senior Backend Engineer",
  "summary": "Backend engineer focused on payments infrastructure…",
  "yearsExperience": 8,
  "skills": [
    "Go",
    "Postgres",
    "Kafka",
    "Kubernetes"
  ],
  "experience": [
    {
      "title": "Senior Backend Engineer",
      "company": "Meridian Labs",
      "startDate": "2023-02",
      "endDate": "present",
      "highlights": [
        "Cut settlement latency 70%"
      ]
    }
  ],
  "education": [
    {
      "degree": "BS Computer Science",
      "school": "UC Berkeley",
      "year": "2018"
    }
  ],
  "links": {
    "linkedin": "https://linkedin.com/in/…",
    "github": "https://github.com/…",
    "website": null
  },
  "usage": {
    "credits": 8,
    "balanceRemaining": 410
  }
}

Four ways in. Same $0.08/resume.

curl
curl https://api.kynth.studio/v1/resume \
  -H "Authorization: Bearer ksk_live_…" \
  -H "Content-Type: application/json" \
  -d '{"fileUrl":"https://…/resume.pdf"}'
TypeScript
import { KynthCore } from "@kynth/api";

const kynth = new KynthCore({ apiKey: process.env.KYNTH_API_KEY! });
const result = await kynth.resume({
  "fileUrl": "https://…/resume.pdf"
});
Python
from kynth import Kynth

client = Kynth(api_key=os.environ["KYNTH_API_KEY"])
result = client.resume(
    fileUrl="https://…/resume.pdf",
)
MCP
// One-time setup in your MCP client (Claude, Cursor, …):
{ "mcpServers": { "kynth-core": {
    "command": "npx", "args": ["@kynth/api-mcp"],
    "env": { "KYNTH_API_KEY": "ksk_live_…" } } } }

// Then the agent just calls the kynth_resume tool.

More from documents