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

> Get user information

Get user information

**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_info" \
  -H "Authorization: Bearer YOUR_API_KEY"
```


## OpenAPI

````yaml openapi/tikhub-en.json GET /tikhub/weibo/web_v2/fetch_user_info
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_info:
    get:
      tags:
        - TikHub - Weibo
      summary: Get user information
      description: Get user information
      operationId: get_tikhub_weibo_web_v2_fetch_user_info
      parameters:
        - name: uid
          in: query
          required: false
          schema:
            description: User id
            default: ''
            title: Uid
            nullable: true
            type: string
          description: User id
          example: '1722594714'
        - name: custom
          in: query
          required: false
          schema:
            description: Custom Weibo username
            default: ''
            title: Custom
            nullable: true
            type: string
          description: Custom Weibo username
          example: shuqi
      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

````