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

# Download item list

> Download item list

Download item list

**Pricing** — base \$0.0145 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_list_download" \
  -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_list_download
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_list_download:
    post:
      tags:
        - TikHub - Douyin
      summary: Download item list
      description: Download item list
      operationId: post_tikhub_douyin_creator_v2_fetch_item_list_download
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ItemListDownloadRequest'
              description: Item list download request parameters
            example:
              cookie: Your_Cookie_Here
              min_cursor: 1752336000000
              max_cursor: 1760198399000
              type_filters:
                - 2
                - 3
                - 4
                - 5
                - 1
                - 8
              need_long_article: true
        required: true
      responses:
        '200':
          description: >-
            Successful response. Response structure varies; refer to the actual
            API response.
components:
  schemas:
    ItemListDownloadRequest:
      properties:
        cookie:
          type: string
          title: Cookie
          description: User Cookie
          example: Your_Cookie_Here
        min_cursor:
          type: integer
          title: Min Cursor
          description: Min cursor (start timestamp in milliseconds)
          example: 1752336000000
        max_cursor:
          type: integer
          title: Max Cursor
          description: Max cursor (end timestamp in milliseconds)
          example: 1760198399000
        type_filters:
          items:
            type: integer
          type: array
          title: Type Filters
          description: >-
            Type filters: 1=video under 1 min, 2=1-3 min video, 3=3-5 min video,
            4=video over 5 min, 5=image+text, 8=long-form article
          default:
            - 1
            - 2
            - 3
            - 4
            - 5
            - 8
          example:
            - 2
            - 3
            - 4
            - 5
            - 1
            - 8
        need_long_article:
          type: boolean
          title: Need Long Article
          description: Include long articles
          default: true
          example: true
      type: object
      required:
        - cookie
        - min_cursor
        - max_cursor
      title: ItemListDownloadRequest
      description: Item List Download Request Model
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: AIsa API key. Get yours at https://aisa.one

````