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

# Get Douyin Live Room Info

> Fetch normalized live room info data from Douyin.

# Get Douyin Live Room Info

Fetch normalized live room info data from Douyin.

Each successful task costs a fixed `0.10` credits.

## Request Body

```json theme={"system"}
{
  "room_id": "7462723839303093032"
}
```

## Use with MCP

| Interface      | Value                                                     |
| -------------- | --------------------------------------------------------- |
| REST           | `POST /v1/douyin/live-room-detail`                        |
| Compact MCP    | `socq_execute` with `endpoint: "douyin/live-room-detail"` |
| Typed MCP      | `socq_douyin_live_room_detail`                            |
| Exact-tool URL | `https://api.socq.ai/mcp?tools=douyin_live_room_info`     |
| CLI            | `socq douyin live-room-detail`                            |

<Info>
  A successful request returns a `task_id`. Poll it with `socq_get_task`, then read normalized records from `results.items`.
</Info>

## Result Fields

| Field                   | Type            | Nullable | Description                                                              |
| ----------------------- | --------------- | -------- | ------------------------------------------------------------------------ |
| `id`                    | `string`        | Yes      | Unique identifier for this result item.                                  |
| `platform`              | `string`        | No       | Platform the result belongs to, such as `instagram` or `linkedin`.       |
| `resource`              | `string`        | No       | SocQ resource represented by the result, such as `videos` or `comments`. |
| `type`                  | `string`        | No       | Category of the result item, such as `video`, `post`, or `comment`.      |
| `url`                   | `string`        | Yes      | Public URL of the result item when available.                            |
| `published_at`          | `string`        | Yes      | Time the source item was published, in ISO 8601 format when available.   |
| `collected_at`          | `string`        | No       | Time SocQ collected or processed this result, in ISO 8601 format.        |
| `title`                 | `string`        | Yes      | Title of the live room or broadcast.                                     |
| `author`                | `object`        | Yes      | Author or publisher of the content.                                      |
| `author`                | `object`        | No       | Field value in the standard result.                                      |
| `author.id`             | `string`        | Yes      | Unique identifier of the author.                                         |
| `author.username`       | `string`        | Yes      | Public username or handle of the account.                                |
| `author.name`           | `string`        | Yes      | Display name of the author.                                              |
| `author.url`            | `string`        | Yes      | Public URL of the author when available.                                 |
| `author.avatar_url`     | `string`        | Yes      | URL of the account avatar image.                                         |
| `author.is_verified`    | `boolean`       | Yes      | Whether the account is verified on the platform.                         |
| `author.is_private`     | `boolean`       | Yes      | Whether the account is private.                                          |
| `status`                | `string`        | Yes      | Current status reported for the live room.                               |
| `metrics`               | `object`        | Yes      | Counters and measurements available for the result item.                 |
| `metrics`               | `object`        | No       | Field value in the standard result.                                      |
| `metrics.viewers_count` | `integer`       | Yes      | Number of viewers in the live room.                                      |
| `metrics.likes_count`   | `integer`       | Yes      | Number of likes.                                                         |
| `media`                 | `array<object>` | Yes      | Images, videos, or other media attached to the result.                   |

## Completed Task Response

```json theme={"system"}
{
  "code": 200,
  "message": "success",
  "data": {
    "task_id": "task_example",
    "public_id": "douyin/live-room-detail",
    "status": "succeeded",
    "result_count": 0,
    "credits_amount": 0,
    "results": {
      "schema_id": "live-room",
      "schema_version": "1.0",
      "items": [],
      "limit": 20,
      "next_cursor": null,
      "has_more": false
    }
  }
}
```


## OpenAPI

````yaml api-manual/agent-api/agent-api.json POST /v1/douyin/live-room-detail
openapi: 3.1.0
info:
  title: SocQ Agent API
  version: v1-d93e6d4f8368
  description: Asynchronous social data API generated from the SocQ Capability Registry.
servers:
  - url: https://api.socq.ai
security: []
paths:
  /v1/douyin/live-room-detail:
    post:
      tags:
        - douyin
      summary: Douyin Live Room Details API
      description: Collect public Douyin live room details.
      operationId: socq_douyin_live_room_detail
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $schema: https://json-schema.org/draft/2020-12/schema
              type: object
              additionalProperties: false
              properties:
                room_id:
                  type: string
                  minLength: 1
                  description: A public live room identifier.
              required:
                - room_id
      responses:
        '200':
          description: Task accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AgentSubmitResponse'
        '422':
          description: Input validation failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AgentValidationErrorResponse'
      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'
          required:
            - task_id
            - status
    AgentValidationErrorResponse:
      type: object
      properties:
        code:
          type: integer
          const: 422
        error:
          type: object
          properties:
            message:
              type: string
            type:
              type: string
            details:
              type: object
          required:
            - message
            - type
      required:
        - code
        - error
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````