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

# Fetch item audience others analysis

> Fetch item audience others analysis

Fetch item audience others analysis

**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/creator_v2/fetch_item_audience_others" \
  -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/creator_v2/fetch_item_audience_others
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/creator_v2/fetch_item_audience_others:
    post:
      tags:
        - TikHub - Douyin
      summary: Fetch item audience others analysis
      description: Fetch item audience others analysis
      operationId: post_tikhub_douyin_creator_v2_fetch_item_audience_others
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ItemAudienceOthersRequest'
              description: Item audience supplementary analysis request parameters
            example:
              cookie: Your_Cookie_Here
              item_id: '7559536212910853422'
        required: true
      responses:
        '200':
          description: >-
            Successful response. Response structure varies; refer to the actual
            API response.
components:
  schemas:
    ItemAudienceOthersRequest:
      properties:
        cookie:
          type: string
          title: Cookie
          description: User Cookie
          example: Your_Cookie_Here
        item_id:
          type: string
          title: Item Id
          description: Item ID
          example: '7559536212910853422'
      type: object
      required:
        - cookie
        - item_id
      title: ItemAudienceOthersRequest
      description: Item Audience Others Request Model
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: AIsa API key. Get yours at https://aisa.one

````