Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.dropcv.work/llms.txt

Use this file to discover all available pages before exploring further.

jd_parse 把一段 JD 文本解析成结构化字段:岗位名、硬技能、软技能、经验要求、学历要求、行业、亮点。

参数

字段类型必填说明
jd_textstring (50-8000 字符)JD 文本

返回

{
  "title": "高级后端工程师",
  "hard_skills": ["Python", "PostgreSQL", "Docker", "Kubernetes"],
  "soft_skills": ["沟通", "团队协作"],
  "experience_years": "5+",
  "education": "本科及以上",
  "industry": "互联网",
  "highlights": ["有大型分布式系统经验", "熟悉云原生"]
}

示例

curl -X POST https://api.dropcv.work/api/external/v1/skills/jd_parse/invoke \
  -H "Authorization: Bearer $DROPCV_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "params": {
      "jd_text": "岗位职责:负责后端服务架构设计...任职要求:5 年以上 Python 经验..."
    }
  }'

权限

不需要 write 权限。