> ## 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 标记的帖子

> 采集标记 Instagram 个人资料的公共帖子。

# Instagram 标记的帖子

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

## 与 MCP 一起使用

| 接口          | 值                                                     |
| ----------- | ----------------------------------------------------- |
| REST        | `POST /v1/instagram/tagged-posts`                     |
| Compact MCP | `socq_execute` 与 `endpoint: "instagram/tagged-posts"` |
| Typed MCP   | `socq_instagram_tagged_posts`                         |
| CLI         | `socq instagram tagged-posts`                         |

结果使用标准化的 Instagram 帖子形状，并包括可用标签、提及、媒体和参与度指标。


## OpenAPI

````yaml api-manual/agent-api/agent-api.json POST /v1/instagram/tagged-posts
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/tagged-posts:
    post:
      tags:
        - instagram
      summary: Instagram Tagged Posts API
      description: Collect public posts that tag an Instagram profile.
      operationId: socq_instagram_tagged_posts
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $schema: https://json-schema.org/draft/2020-12/schema
              type: object
              additionalProperties: false
              properties:
                results_limit:
                  type: integer
                  minimum: 1
                  maximum: 2000
                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

````