> ## 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 talents by category

> Search talents by category

Search talents by category

**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 -X POST "https://api.aisa.one/apis/v1/tikhub/douyin/douplus/fetch_talents_by_category" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'  # see request schema below
```


## OpenAPI

````yaml openapi/tikhub-en.json POST /tikhub/douyin/douplus/fetch_talents_by_category
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/douplus/fetch_talents_by_category:
    post:
      tags:
        - TikHub - Douyin
      summary: Search talents by category
      description: Search talents by category
      operationId: post_tikhub_douyin_douplus_fetch_talents_by_category
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TalentByCategoryRequest'
            example:
              name: Music
              page: 0
              limit: 20
        required: true
      responses:
        '200':
          description: >-
            Successful response. Response structure varies; refer to the actual
            API response.
components:
  schemas:
    TalentByCategoryRequest:
      properties:
        cookie:
          title: Cookie
          description: User www.douyin.com web Cookie
          nullable: true
          type: string
        name:
          title: Name
          description: >-
            Category name or keyword (from the talent category endpoint); empty
            for all
          default: ''
          example: Music
          nullable: true
          type: string
        page:
          title: Page
          description: Page index from 0
          default: 0
          example: 0
          nullable: true
          type: integer
        limit:
          title: Limit
          description: Page size
          default: 20
          example: 20
          nullable: true
          type: integer
      type: object
      title: TalentByCategoryRequest
      description: Search Talents By Category Request Model
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: AIsa API key. Get yours at https://aisa.one

````