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

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

# Search communities / 搜索社区

Search X communities by keyword, paged by cursor.

按关键词搜索 X 社区，按游标翻页。

Task / 任务: `twitter_search_communities_v1`
Platform / 平台: X (Twitter) / X（推特）
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 / 限制

- 返回社区元数据与人数，不含社区内的帖子。
- keyword 不能含空格：含空格会被本地拒绝（真机实测上游对该取值返回参数错误）。

## Inputs / 输入

- `keyword` — Keyword / 关键词; kind=text; required=True; default=''; bounds=min_length=1, max_length=100
- `cursor` — Cursor / 翻页游标; kind=cursor; required=False; default=''; bounds=max_length=4096

## Minimal call / 最小调用

`estimate_collection`

```json
{
  "task_query": "搜索 X 上关于生成式 AI 的社区",
  "task_code": "twitter_search_communities_v1",
  "input": {
    "keyword": "GenerativeAI"
  }
}
```


## Result and pagination / 结果与分页

- mode=cursor
- input: `cursor`; continuation: `data.has_more` → `data.next_cursor`

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.items` — type=array<object>; Projected public items for this task. / 本任务投影后的公开条目。
- `data.item_count` — type=integer; Number of returned items. / 本次返回的条目数。
- `data.items[].community_id` — type=scalar|null; Community identifier, when available. / 社群 ID（如有）。
- `data.items[].community_name` — type=scalar|null; Community name, when available. / 社群名称（如有）。
- `data.items[].member_count` — type=scalar|null; Member count, when available. / 成员数（如有）。
- `data.items[].topic` — type=scalar|null; Topic, when available. / 话题（如有）。
- `data.items[].is_nsfw` — type=scalar|null; Adult-content flag, when available. / 成人内容标记（如有）。
- `data.items[].banner` — type=scalar|null; Banner, when available. / 横幅（如有）。
- `data.items[].default_banner` — type=scalar|null; Default banner, when available. / 默认横幅（如有）。
- `data.items[].owner_id` — type=scalar|null; Owner id, when available. / 所有者ID（如有）。
- `data.has_more` — type=boolean; Whether a continuation is available. / 是否还有下一页。
- `data.next_cursor` — type=string|null; Cursor for the next page, or null. / 下一页游标；无下一页时为 null。

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 控制。
