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

# Fetch item overview data

> Fetch item overview data

Fetch item overview data

**Pricing** — base \$0.00145 per successful call (provider cost × 1.45; final charge scales by your plan multiplier). Charged only when the upstream response body `code` is `200`.

<Note>
  Response structure is not yet fully documented — **refer to the actual API response**.
</Note>

## Example

```bash theme={null}
curl -X POST "https://api.aisa.one/apis/v1/tikhub/douyin/creator_v2/fetch_item_overview_data" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'  # see request schema below
```


## OpenAPI

````yaml openapi/tikhub-en.json POST /tikhub/douyin/creator_v2/fetch_item_overview_data
openapi: 3.0.0
info:
  title: TikHub API
  description: >-
    Multi-platform social media data via TikHub — Douyin, TikTok, Bilibili,
    Kuaishou, Weibo, Xiaohongshu, Zhihu, and commercial
    (Xingtu/Huahuo/Billboard) endpoints.
  version: 1.0.0
servers:
  - url: https://api.aisa.one/apis/v1
security:
  - bearerAuth: []
paths:
  /tikhub/douyin/creator_v2/fetch_item_overview_data:
    post:
      tags:
        - TikHub - Douyin
      summary: Fetch item overview data
      description: Fetch item overview data
      operationId: post_tikhub_douyin_creator_v2_fetch_item_overview_data
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ItemMgetRequest'
              description: Item overview data request parameters
            example:
              cookie: Your_Cookie_Here
              ids: '7559536212910853422'
              fields: >-
                metrics,review,play_info,dou_plus,integrated_incentive,incentive_life,content_analysis
        required: true
      responses:
        '200':
          description: >-
            Successful response. Response structure varies; refer to the actual
            API response.
components:
  schemas:
    ItemMgetRequest:
      properties:
        cookie:
          type: string
          title: Cookie
          description: User Cookie
          example: Your_Cookie_Here
        ids:
          type: string
          title: Ids
          description: Item IDs, separated by comma
          example: 7559536212910853422,7559536212910853423
        fields:
          title: Fields
          description: >-
            Fields to return, separated by comma. Optional values: metrics,
            review, play_info, dou_plus, integrated_incentive, incentive_life,
            content_analysis
          default: >-
            metrics,review,play_info,dou_plus,integrated_incentive,incentive_life,content_analysis
          nullable: true
          type: string
      type: object
      required:
        - cookie
        - ids
      title: ItemMgetRequest
      description: Item Overview Data Request Model
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: AIsa API key. Get yours at https://aisa.one

````