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

# Search creator suggestions

> Search creator suggestions

Search creator suggestions

**Pricing** — base \$0.0087 per successful call (provider cost × 1.45; final charge scales by your plan multiplier). Charged only when the upstream response body `code` is `200`.

## Example

```bash theme={null}
curl "https://api.aisa.one/apis/v1/tikhub/bilibili/huahuo/search_upper_suggest?nickname_or_mids=VALUE" \
  -H "Authorization: Bearer YOUR_API_KEY"
```


## OpenAPI

````yaml openapi/tikhub-en.json GET /tikhub/bilibili/huahuo/search_upper_suggest
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/bilibili/huahuo/search_upper_suggest:
    get:
      tags:
        - TikHub - Bilibili
      summary: Search creator suggestions
      description: Search creator suggestions
      operationId: get_tikhub_bilibili_huahuo_search_upper_suggest
      parameters:
        - name: nickname_or_mids
          in: query
          required: true
          schema:
            type: string
            description: Creator nickname fragment or UID
            title: Nickname Or Mids
          description: Creator nickname fragment or UID
        - name: page
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            description: One-based page number
            default: 1
            title: Page
          description: One-based page number
        - name: panel_type
          in: query
          required: false
          schema:
            type: integer
            description: Industry strategy panel; values match search_upper
            default: 0
            title: Panel Type
          description: Industry strategy panel; values match search_upper
        - name: marketing_target
          in: query
          required: false
          schema:
            type: integer
            description: Marketing objective; values match search_upper
            default: 1
            title: Marketing Target
          description: Marketing objective; values match search_upper
        - name: cpm_type
          in: query
          required: false
          schema:
            type: integer
            description: 'CPM traffic scope: 1=all, 2=organic'
            default: 1
            title: Cpm Type
          description: 'CPM traffic scope: 1=all, 2=organic'
        - name: cpm_cycle
          in: query
          required: false
          schema:
            type: integer
            description: 'CPM window: 1=7, 2=15, 3=30 days'
            default: 3
            title: Cpm Cycle
          description: 'CPM window: 1=7, 2=15, 3=30 days'
        - name: play_median_traffic_type
          in: query
          required: false
          schema:
            type: integer
            description: 'Median-view traffic scope: 1=all, 2=organic'
            default: 1
            title: Play Median Traffic Type
          description: 'Median-view traffic scope: 1=all, 2=organic'
        - name: play_median_cycle
          in: query
          required: false
          schema:
            type: integer
            description: 'Median-view window: 1=7, 2=15, 3=30 days'
            default: 3
            title: Play Median Cycle
          description: 'Median-view window: 1=7, 2=15, 3=30 days'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResponseModel'
components:
  schemas:
    ResponseModel:
      properties:
        code:
          type: integer
          title: Code
          description: HTTP status code
          default: 200
        request_id:
          title: Request Id
          description: Unique request identifier
          nullable: true
          type: string
        message:
          type: string
          title: Message
          description: Response message (EN-US)
          default: Request successful. This request will incur a charge.
        message_zh:
          type: string
          title: Message Zh
          description: Response message (ZH-CN)
          default: Request successful; this request will be billed.
        support:
          type: string
          title: Support
          description: Support message
          default: 'Discord: https://discord.gg/aMEAS8Xsvz'
        time:
          type: string
          title: Time
          description: The time the response was generated
        time_stamp:
          type: integer
          title: Time Stamp
          description: The timestamp the response was generated
        time_zone:
          type: string
          title: Time Zone
          description: The timezone of the response time
          default: America/Los_Angeles
        docs:
          title: Docs
          description: Link to the API Swagger documentation for this endpoint
          nullable: true
          type: string
        cache_message:
          title: Cache Message
          description: Cache message (EN-US)
          default: >-
            This response is cached and accessible via the URL below for 24
            hours at no extra cost. The cache is for request tracing only — it
            doesn't affect the API's data freshness and won't be returned
            through the API again.
          nullable: true
          type: string
        cache_message_zh:
          title: Cache Message Zh
          description: Cache message (ZH-CN)
          default: >-
            This response has been cached and can be viewed directly via the URL
            below; it is valid for 24 hours and accessing the cached link incurs
            no additional charge. The cache is for request tracing only and does
            not affect the freshness of the API data, nor will it be returned
            again through the API.
          nullable: true
          type: string
        cache_url:
          title: Cache Url
          description: The URL to access the cached result
          nullable: true
          type: string
        router:
          type: string
          title: Router
          description: The endpoint that generated this response
          default: ''
        params:
          title: Params
          description: The parameters used in the request
          default: {}
        data:
          title: Data
          description: The response data
          nullable: true
      type: object
      title: ResponseModel
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: AIsa API key. Get yours at https://aisa.one

````