文档说明
鉴权
这里统一说明 API Key / Bearer 鉴权的接入顺序、请求头格式和推荐起步方式。
请求头格式
优先使用 `Authorization: Bearer <key>`,也支持 `X-API-Key`。新接入默认先走 Context API 验证 key 是否生效。
代码
1
curl "https://api.profileclaw.com/api/v1/context" -H "Authorization: Bearer $PROFILECLAW_API_KEY"推荐顺序
先创建 API Key,再调用 `/api/v1/context`,最后按任务需要扩展到 career graph、prediction、webhooks 等更专门的接口。
