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

# Get user collection video data

> Get user collection video data

Get user collection video 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/web/fetch_user_collection_videos" \
  -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/web/fetch_user_collection_videos
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/web/fetch_user_collection_videos:
    post:
      tags:
        - TikHub - Douyin
      summary: Get user collection video data
      description: Get user collection video data
      operationId: post_tikhub_douyin_web_fetch_user_collection_videos
      requestBody:
        content:
          application/json:
            schema:
              $ref: >-
                #/components/schemas/Body_fetch_user_collection_videos_api_v1_douyin_web_fetch_user_collection_videos_post
        required: true
      responses:
        '200':
          description: >-
            Successful response. Response structure varies; refer to the actual
            API response.
components:
  schemas:
    Body_fetch_user_collection_videos_api_v1_douyin_web_fetch_user_collection_videos_post:
      properties:
        cookie:
          type: string
          title: Cookie
          description: Your web version of Douyin Cookie
        max_cursor:
          type: integer
          title: Max Cursor
          description: Maximum cursor
          default: 0
        counts:
          type: integer
          title: Counts
          description: Number per page
          default: 20
      type: object
      required:
        - cookie
      title: >-
        Body_fetch_user_collection_videos_api_v1_douyin_web_fetch_user_collection_videos_post
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: AIsa API key. Get yours at https://aisa.one

````