> ## 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 Profile QRCode

> Get User Profile QRCode

Get User Profile QRCode

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


## OpenAPI

````yaml openapi/tikhub-en.json GET /tikhub/douyin/xingtu_v2/get_user_profile_qrcode
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_user_profile_qrcode:
    get:
      tags:
        - TikHub - Douyin
      summary: Get User Profile QRCode
      description: Get User Profile QRCode
      operationId: get_tikhub_douyin_xingtu_v2_get_user_profile_qrcode
      parameters:
        - name: core_user_id
          in: query
          required: false
          schema:
            description: User core ID (pick one with sec_uid)
            title: Core User Id
            nullable: true
            type: string
          description: User core ID (pick one with sec_uid)
          example: '1113181577281568'
        - name: sec_uid
          in: query
          required: false
          schema:
            description: User sec_uid (pick one with core_user_id)
            title: Sec Uid
            nullable: true
            type: string
          description: User sec_uid (pick one with core_user_id)
      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

````