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

# Reddit Comments

> Collect public comments from Reddit posts.

# Reddit Comments

```json theme={"system"}
{
  "urls": ["https://www.reddit.com/r/example/comments/post_id/example_post/"]
}
```

## Use with MCP

| Interface      | Value                                             |
| -------------- | ------------------------------------------------- |
| REST           | `POST /v1/reddit/comments`                        |
| Compact MCP    | `socq_execute` with `endpoint: "reddit/comments"` |
| Typed MCP      | `socq_reddit_comments`                            |
| Exact-tool URL | `https://api.socq.ai/mcp?tools=reddit_comments`   |
| CLI            | `socq reddit comments`                            |

Use the JSON request body above as the nested `input` object for `socq_execute`, or pass the same fields directly to the typed tool. Typed tools also accept `_wait_seconds`, `_result_limit`, and `_idempotency_key`.

<Info>
  A successful collection returns a `task_id`. Continue with `socq_get_task` until the task succeeds, then read normalized records from `results.items`.
</Info>

See [MCP quickstart](/integrations/mcp) for the complete submission and polling flow.

This endpoint does not accept `results_limit`. All returned comments are saved and billing is based on the actual result count. Comment text is returned in `text`.

## Completed Task Response

```json theme={"system"}
{
  "code": 200,
  "data": {
    "task_id": "A1B2C3D4E5F6G7H8",
    "status": "succeeded",
    "public_id": "reddit/comments",
    "result_count": 1,
    "credits_amount": 0.3,
    "results": {
      "limit": 50,
      "next_cursor": null,
      "has_more": false,
      "items": [{
        "id": "comment_id",
        "platform": "reddit",
        "resource": "comments",
        "type": "comment",
        "url": "https://www.reddit.com/r/example/comments/post_id/example_post/comment_id/",
        "text": "Example public comment",
        "author": {"id": null, "username": "example_user", "name": "example_user", "url": null},
        "metrics": {"upvotes_count": 24, "replies_count": 3},
        "media": [],
        "created_at": "2026-07-16T09:00:00",
        "collected_at": "2026-07-17T10:30:00",
        "extra": {"post_id": "post_id", "parent_comment_id": null, "community_name": "example"}
      }]
    }
  }
}
```


## OpenAPI

````yaml api-manual/agent-api/agent-api.json POST /v1/reddit/comments
openapi: 3.1.0
info:
  title: SocQ Agent API
  version: v1-063d1c96173a
  description: Asynchronous social data API generated from the SocQ Capability Registry.
servers:
  - url: https://api.socq.ai
security: []
paths:
  /v1/reddit/comments:
    post:
      tags:
        - reddit
      summary: Reddit Comments API
      description: Reddit Comments API
      operationId: socq_reddit_comments
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $schema: https://json-schema.org/draft/2020-12/schema
              type: object
              additionalProperties: false
              properties:
                urls:
                  type: array
                  items:
                    type: string
                    minLength: 1
                  minItems: 1
                  description: Public profile or content URLs.
              required:
                - urls
      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

````