> ## 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 Author Spread Videos

> Get Author Spread Videos

Get Author Spread Videos

**Pricing** — base \$0.0029 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/xingtu_v2/get_author_spread_videos?o_author_id=7112600044674482187" \
  -H "Authorization: Bearer YOUR_API_KEY"
```


## OpenAPI

````yaml openapi/tikhub-en.json GET /tikhub/douyin/xingtu_v2/get_author_spread_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/xingtu_v2/get_author_spread_videos:
    get:
      tags:
        - TikHub - Douyin
      summary: Get Author Spread Videos
      description: Get Author Spread Videos
      operationId: get_tikhub_douyin_xingtu_v2_get_author_spread_videos
      parameters:
        - name: o_author_id
          in: query
          required: true
          schema:
            type: string
            description: Creator ID
            title: O Author Id
          description: Creator ID
          example: '7112600044674482187'
        - name: platform_source
          in: query
          required: false
          schema:
            type: integer
            description: 'Platform source: 1 for Douyin'
            default: 1
            title: Platform Source
          description: 'Platform source: 1 for Douyin'
        - name: platform_channel
          in: query
          required: false
          schema:
            type: integer
            description: 'Platform channel: 1 for short video'
            default: 1
            title: Platform Channel
          description: 'Platform channel: 1 for short video'
      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

````