> ## 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.

# Instagram Reels

> 采集公共 Instagram Reels数据。

# Instagram Reels

采集公共 Instagram Reels数据，包括标题文本、观看次数、参与度指标、媒体字段和原始 JSONL 输出。

## 端点

```http theme={"system"}
POST https://api.socq.ai/v1/instagram/reels
```

## 请求正文

```json theme={"system"}
{
  "usernames": ["instagram"],
  "results_limit": 10
}
```

## 与 MCP 一起使用

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

使用上面的 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)。

## 结果项

任务成功后，调用`GET /v1/tasks/{task_id}`读取`results`下的分页标准记录。

```json theme={"system"}
{
  "id": "3936101605334124689",
  "platform": "instagram",
  "resource": "reels",
  "type": "reel",
  "shortcode": "Daf145ByQiR",
  "url": "https://www.instagram.com/p/Daf145ByQiR/",
  "caption": "Reel caption text",
  "author": {
    "id": "25025320",
    "username": "instagram",
    "name": "Instagram",
    "url": "https://www.instagram.com/instagram",
    "avatar_url": null,
    "is_verified": null,
    "is_private": null
  },
  "metrics": {
    "likes_count": 109829,
    "comments_count": 4734,
    "views_count": 5781967,
    "plays_count": 40319904
  },
  "media": [
    {
      "type": "video",
      "url": "https://example.com/reel.mp4",
      "thumbnail_url": "https://example.com/thumbnail.jpg",
      "width": 1080,
      "height": 1920,
      "duration_seconds": 29.9
    }
  ],
  "duration_seconds": 29.9,
  "audio": {
    "id": null,
    "title": null,
    "artist": null,
    "url": "https://example.com/audio.mp4"
  },
  "hashtags": [],
  "mentions": ["creator"],
  "created_at": "2026-07-07T16:00:36",
  "collected_at": "2026-07-08T08:59:45",
  "extra": {}
}
```

## 响应

```json theme={"system"}
{
  "code": 200,
  "data": {
    "task_id": "A1B2C3D4E5F6G7H8",
    "status": "queued",
    "created_time": "2026-07-08T10:30:00"
  }
}
```


## OpenAPI

````yaml api-manual/agent-api/agent-api.json POST /v1/instagram/reels
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/instagram/reels:
    post:
      tags:
        - instagram
      summary: Instagram Reels API
      description: Instagram Reel API
      operationId: socq_instagram_reels
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $schema: https://json-schema.org/draft/2020-12/schema
              type: object
              additionalProperties: false
              properties:
                callback_url:
                  type: string
                  format: uri
                query:
                  type: string
                  minLength: 1
                  description: Search query.
                results_limit:
                  type: integer
                  minimum: 1
                  maximum: 2000
                urls:
                  type: array
                  items:
                    type: string
                    minLength: 1
                  minItems: 1
                  description: Public profile or content URLs.
                usernames:
                  type: array
                  items:
                    type: string
                    minLength: 1
                  minItems: 1
                  description: Public account usernames.
              required: []
              anyOf:
                - required:
                    - query
                - required:
                    - urls
                - 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

````