> ## 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 homepage video data

> Get user homepage video data

Get user homepage 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 "https://api.aisa.one/apis/v1/tikhub/douyin/web/fetch_user_post_videos?sec_user_id=MS4wLjABAAAANXSltcLCzDGmdNFI2Q_QixVTr67NiYzjKOIP5s03CAE" \
  -H "Authorization: Bearer YOUR_API_KEY"
```


## OpenAPI

````yaml openapi/tikhub-en.json GET /tikhub/douyin/web/fetch_user_post_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_post_videos:
    get:
      tags:
        - TikHub - Douyin
      summary: Get user homepage video data
      description: Get user homepage video data
      operationId: get_tikhub_douyin_web_fetch_user_post_videos
      parameters:
        - name: sec_user_id
          in: query
          required: true
          schema:
            type: string
            title: Sec User Id
            description: User sec_user_id
          description: User sec_user_id
          example: MS4wLjABAAAANXSltcLCzDGmdNFI2Q_QixVTr67NiYzjKOIP5s03CAE
        - name: max_cursor
          in: query
          required: false
          schema:
            type: string
            description: Maximum cursor
            default: '0'
            title: Max Cursor
          description: Maximum cursor
        - name: count
          in: query
          required: false
          schema:
            type: integer
            description: Number per page
            default: 20
            title: Count
          description: Number per page
        - name: filter_type
          in: query
          required: false
          schema:
            type: string
            description: Filter type
            default: '0'
            title: Filter Type
          description: Filter type
        - name: cookie
          in: query
          required: false
          schema:
            type: string
            title: Cookie
            description: Your web version of Douyin Cookie
          description: Your web version of Douyin Cookie
      responses:
        '200':
          description: >-
            Successful response. Response structure varies; refer to the actual
            API response.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: AIsa API key. Get yours at https://aisa.one

````