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

# Delivery analysis overview

> Delivery analysis overview

Delivery analysis overview

**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/douplus/fetch_analyse_overview" \
  -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/douplus/fetch_analyse_overview
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/douplus/fetch_analyse_overview:
    post:
      tags:
        - TikHub - Douyin
      summary: Delivery analysis overview
      description: Delivery analysis overview
      operationId: post_tikhub_douyin_douplus_fetch_analyse_overview
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AnalyseStatsRequest'
            example:
              cookie: Your_Cookie_Here
              query:
                startTime: '1780934400'
                endTime: '1781625599'
                analysisType: 1
                authorSecIdList: []
                statusList: []
                SecondaryTargetIds: []
                CollectWayIds: []
                metrics:
                  - stat_cost
                  - total_play
                  - play_duration_5s_rate
                  - total_like
                  - dy_comment
                  - dy_share
                  - dy_home_visited
                  - dy_follow
        required: true
      responses:
        '200':
          description: >-
            Successful response. Response structure varies; refer to the actual
            API response.
components:
  schemas:
    AnalyseStatsRequest:
      properties:
        cookie:
          type: string
          title: Cookie
          description: User www.douyin.com web Cookie
          example: Your_Cookie_Here
        query:
          additionalProperties: true
          type: object
          title: Query
          description: >-
            Analysis query object. Key fields: startTime, endTime (second
            timestamp string); analysisType (1=account, 2=video, 3=live);
            authorSecIdList (account sec_uid list); statusList (delivery status
            filter); metrics (metric list, e.g. stat_cost, total_play,
            total_like, dy_comment, dy_share, dy_follow); SecondaryTargetIds;
            CollectWayIds. graph extra: dimension; detail extra: page, limit,
            orderByMetric, orderByType; video/live extra: liveRoomIdList
          example:
            CollectWayIds: []
            SecondaryTargetIds: []
            analysisType: 1
            authorSecIdList: []
            endTime: '1781625599'
            metrics:
              - stat_cost
              - total_play
              - play_duration_5s_rate
              - total_like
              - dy_comment
              - dy_share
              - dy_home_visited
              - dy_follow
            startTime: '1780934400'
            statusList: []
      type: object
      required:
        - cookie
        - query
      title: AnalyseStatsRequest
      description: >-
        Delivery Analysis Request Model (overview / graph / detail, query
        passthrough)
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: AIsa API key. Get yours at https://aisa.one

````