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

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

# Post detail / 帖子详情

Fetch one Reddit post by id.

按帖子 ID 取单条帖子的详情。

Task / 任务: `reddit_post_detail_v1`
Platform / 平台: Reddit / Reddit
Billing / 计费: 2 Credits per successful task / 每个成功任务 2 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 / 限制

- post_id 必须是 t3_ 前缀的完整 ID（搜索结果返回的 post_id 可直接使用）。

## Inputs / 输入

- `post_id` — Post ID / 帖子 ID; kind=text; required=True; default=''; bounds=min_length=0, max_length=64

## Minimal call / 最小调用

`estimate_collection`

```json
{
  "task_query": "获取指定 Reddit 帖子的详情",
  "task_code": "reddit_post_detail_v1",
  "input": {
    "post_id": "t3_1vvfvxa"
  }
}
```


## 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.post_id` — type=scalar|null; Post identifier, when available. / 帖子 ID（如有）。
- `data.item.title` — type=scalar|null; Title, when available. / 标题（如有）。
- `data.item.text` — type=scalar|null; Text content, when available. / 正文内容（如有）。
- `data.item.url` — type=scalar|null; Public URL, when available. / 公开链接（如有）。
- `data.item.permalink` — type=scalar|null; Permanent URL, when available. / 永久链接（如有）。
- `data.item.published_at` — type=integer|null; Publication time, when available. / 发布时间（如有）。
- `data.item.edited_at` — type=integer|null; Last edit time, when available. / 最后编辑时间（如有）。
- `data.item.score` — type=scalar|null; Score, when available. / 评分（如有）。
- `data.item.comment_count` — type=scalar|null; Comment count, when available. / 评论数（如有）。
- `data.item.upvote_ratio` — type=scalar|null; Upvote ratio, when available. / 赞成票比例（如有）。
- `data.item.domain` — type=scalar|null; Domain, when available. / 域名（如有）。
- `data.item.language` — type=scalar|null; Language, when available. / 语言（如有）。
- `data.item.is_nsfw` — type=scalar|null; Adult-content flag, when available. / 成人内容标记（如有）。
- `data.item.is_spoiler` — type=scalar|null; Is spoiler, when available. / 是否剧透（如有）。
- `data.item.is_locked` — type=scalar|null; Is locked, when available. / 是否锁定（如有）。
- `data.item.author_id` — type=scalar|null; Author identifier, when available. / 作者 ID（如有）。
- `data.item.author_name` — type=scalar|null; Author display name, when available. / 作者名称（如有）。
- `data.item.subreddit_id` — type=scalar|null; Community identifier, when available. / 版块 ID（如有）。
- `data.item.subreddit_name` — type=scalar|null; Community name, when available. / 版块名称（如有）。
- `data.item.thumbnail` — type=scalar|null; Thumbnail, 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 控制。
