---
document_id: agent.collection.task.linkedin_job_detail_v1
schema_version: 2
parent_document_id: agent.querying
section: querying
---

<!-- Generated by scripts.build_agent_guide; do not edit. -->

# Job detail / 职位详情

Fetch a LinkedIn job's detail, optionally with skills and hiring team.

按职位链接取详情，可选带技能与招聘团队。

Task / 任务: `linkedin_job_detail_v1`
Platform / 平台: LinkedIn / 领英
Billing / 计费: 84 Credits per successful task / 每个成功任务 84 Credits
Estimate / 估价: call `estimate_collection`; start directly when `approval_required=false`, otherwise obtain approval for `upper_bound_credits`.
估价：调用 `estimate_collection`；`approval_required=false` 时直接启动，否则请用户确认 `upper_bound_credits`。

## Limitations / 限制

- url 必须是 linkedin.com 的链接。
- 上游的 include_skills / include_hiring_team 不暴露：公开输入契约没有布尔种类。
- benefits/industries/job_functions/skills 常为 null —— 上游默认不返回。

## Inputs / 输入

- `url` — URL / 链接; kind=text; required=True; default=''; bounds=min_length=1, max_length=512

## Minimal call / 最小调用

`estimate_collection`

```json
{
  "task_query": "获取指定 LinkedIn 职位的详情",
  "task_code": "linkedin_job_detail_v1",
  "input": {
    "url": "https://www.linkedin.com/jobs/view/4123456789/"
  }
}
```


## Result and pagination / 结果与分页

- mode=none

Only the fields listed below are part of the stable result contract. /
只有下方列出的字段属于稳定结果契约。

## Result fields / 结果字段

- `meta.request_id` — type=string; Asklear request identifier for tracing. / 用于追踪的 Asklear 请求 ID。
- `meta.api_name` — type=string; Executed collection operation name. / 实际执行的采集操作名称。
- `meta.latency_ms` — type=integer; Collection execution latency in milliseconds. / 采集执行耗时（毫秒）。
- `meta.credits_charged` — type=integer; Asklear user-side Credits settled for this task after completion. / 任务完成后 Asklear 用户侧实际结算的 Credits。
- `data.item` — type=object|null; Projected public detail, or null when absent. / 投影后的公开详情；不存在时为 null。
- `data.item.job_id` — type=scalar|null; Job identifier, when available. / 职位 ID（如有）。
- `data.item.job_title` — type=scalar|null; Job title, when available. / 职位名称（如有）。
- `data.item.company_name` — type=scalar|null; Company name, when available. / 公司名称（如有）。
- `data.item.company_id` — type=scalar|null; Company id, when available. / 公司ID（如有）。
- `data.item.company_url` — type=scalar|null; Company url, when available. / 公司链接（如有）。
- `data.item.job_url` — type=scalar|null; Job url, when available. / 职位链接（如有）。
- `data.item.location` — type=scalar|null; Location, when available. / 地点（如有）。
- `data.item.remote` — type=scalar|null; Remote, when available. / 远程（如有）。
- `data.item.published_at` — type=integer|null; Publication time, when available. / 发布时间（如有）。
- `data.item.salary` — type=scalar|null; Salary, when available. / 薪资（如有）。
- `data.item.description` — type=scalar|null; Description, when available. / 描述（如有）。
- `data.item.job_type` — type=scalar|null; Job type, when available. / 职位类型（如有）。
- `data.item.experience_level` — type=scalar|null; Experience level, when available. / 经验级别（如有）。
- `data.item.job_functions` — type=scalar|null; Job functions, when available. / 职位职能（如有）。
- `data.item.industries` — type=scalar|null; Industries, when available. / 行业（如有）。
- `data.item.skills` — type=scalar|null; Skills, when available. / 技能（如有）。
- `data.item.apply_count` — type=scalar|null; Apply count, when available. / 申请数（如有）。
- `data.item.view_count` — type=scalar|null; View count, when available. / 浏览数（如有）。
- `data.item.employee_count` — type=scalar|null; Employee count, when available. / 员工数（如有）。
- `data.item.benefits` — type=scalar|null; Benefits, when available. / 福利（如有）。
- `data.item.is_closed` — type=scalar|null; Is closed, when available. / 是否关闭（如有）。
- `data.item.is_expired` — type=scalar|null; Is expired, when available. / 是否过期（如有）。

Use `list_collection_tasks` as the runtime authority, then `describe_collection_task` for one task's full input contract, examples and limits. Collection access is entitlement-gated. /
以 `list_collection_tasks` 返回为运行时准据，再用 `describe_collection_task` 取单个任务的完整入参契约、示例与限制；采集能力受 entitlement 控制。
