Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
5 分钟跑通第一次调用。
export DROPCV_API_KEY="drop_cv_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
curl -X POST https://api.dropcv.work/api/external/v1/skills/candidate_search/invoke \ -H "Authorization: Bearer $DROPCV_API_KEY" \ -H "Content-Type: application/json" \ -d '{"params": {"query": "Python 后端 5 年经验", "top_k": 5}}'
{ "success": true, "skill_key": "candidate_search", "invocation_id": "inv_01HXXXXXXX...", "result": { "total": 12, "items": [ {"candidate_id": "...", "full_name": "张三", "current_title": "高级后端", "similarity_score": 0.87, "match_summary": "..."} ] }, "metadata": {"latency_ms": 234} }
CANDIDATE_ID="..." # 从上一步的 items 拿 curl -X POST https://api.dropcv.work/api/external/v1/skills/candidate_profile_read/invoke \ -H "Authorization: Bearer $DROPCV_API_KEY" \ -H "Content-Type: application/json" \ -d "{\"params\": {\"candidate_id\": \"$CANDIDATE_ID\"}}"
@dropcv/cli
Was this page helpful?