> ## 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 following list

> Get user following list

Get user following list

**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/weibo/web_v2/fetch_user_following?uid=1722594714" \
  -H "Authorization: Bearer YOUR_API_KEY"
```


## OpenAPI

````yaml openapi/tikhub-en.json GET /tikhub/weibo/web_v2/fetch_user_following
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/weibo/web_v2/fetch_user_following:
    get:
      tags:
        - TikHub - Weibo
      summary: Get user following list
      description: Get user following list
      operationId: get_tikhub_weibo_web_v2_fetch_user_following
      parameters:
        - name: uid
          in: query
          required: true
          schema:
            type: string
            description: User ID
            title: Uid
          description: User ID
          example: '1722594714'
        - name: page
          in: query
          required: false
          schema:
            type: integer
            description: Page number
            default: 0
            title: Page
          description: Page number
          example: 0
      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

````