> ## Documentation Index
> Fetch the complete documentation index at: https://docs.socq.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# X 个人资料

> 采集公共 X 个人资料元数据和统计数据。

# X 个人资料

为每个公共用户名采集一个规范化的个人资料记录。领先的 `@` 是可选的。

```json theme={"system"}
{
  "usernames": ["openai", "@github"]
}
```

## 与 MCP 一起使用

| 接口          | 值                                          |
| ----------- | ------------------------------------------ |
| REST        | `POST /v1/x/profiles`                      |
| Compact MCP | `socq_execute` 与 `endpoint: "x/profiles"`  |
| Typed MCP   | `socq_x_profiles`                          |
| 精确工具 URL    | `https://api.socq.ai/mcp?tools=x_profiles` |
| CLI         | `socq x profiles`                          |

使用上面的 JSON 请求正文作为 `socq_execute` 的嵌套 `input` 对象，或将相同的字段直接传递给Typed 工具。Typed 工具还接受 `_wait_seconds`、`_result_limit` 和 `_idempotency_key`。

<Info>
  成功的采集将返回 `task_id`。继续 `socq_get_task` 直到任务成功，然后从 `results.items` 读取规范化记录。
</Info>

有关完整的提交和轮询流程，请参阅[MCP 快速入门](/zh/integrations/mcp)。

## 结果项

```json theme={"system"}
{
  "id": "123456789",
  "platform": "x",
  "resource": "profiles",
  "type": "profile",
  "username": "openai",
  "name": "OpenAI",
  "url": "https://x.com/openai",
  "description": "Public profile description",
  "avatar_url": "https://example.com/avatar.jpg",
  "cover_url": "https://example.com/cover.jpg",
  "is_verified": true,
  "is_private": false,
  "metrics": {
    "followers_count": 1000000,
    "following_count": 20,
    "posts_count": 5000,
    "media_count": 800,
    "likes_count": 1200
  },
  "created_at": "2015-12-11T00:00:00",
  "collected_at": "2026-07-17T10:30:00",
  "extra": {}
}
```

不可用或私人个人资料可能不会产生结果记录。


## OpenAPI

````yaml api-manual/agent-api/agent-api.json POST /v1/x/profiles
openapi: 3.1.0
info:
  title: SocQ Agent API
  version: v1-57489840196e
  description: Asynchronous social data API generated from the SocQ Capability Registry.
servers:
  - url: https://api.socq.ai
security: []
paths:
  /v1/x/profiles:
    post:
      tags:
        - x
      summary: X Profiles API
      description: X Profiles API
      operationId: socq_x_profiles
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $schema: https://json-schema.org/draft/2020-12/schema
              type: object
              additionalProperties: false
              properties:
                usernames:
                  type: array
                  items:
                    type: string
                    minLength: 1
                  minItems: 1
                  description: Public account usernames.
              required:
                - usernames
      responses:
        '200':
          description: Task accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AgentSubmitResponse'
      security:
        - bearerAuth: []
        - apiKeyAuth: []
components:
  schemas:
    AgentSubmitResponse:
      type: object
      properties:
        code:
          type: integer
          const: 200
        data:
          type: object
          properties:
            task_id:
              type: string
            status:
              type: string
            created_time:
              type:
                - string
                - 'null'
            idempotent_replay:
              type: boolean
          required:
            - task_id
            - status
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````