> ## 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 author diagnosis

> Fetch author diagnosis

Fetch author diagnosis

**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_author_diagnosis" \
  -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_author_diagnosis
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_author_diagnosis:
    post:
      tags:
        - TikHub - Douyin
      summary: Fetch author diagnosis
      description: Fetch author diagnosis
      operationId: post_tikhub_douyin_creator_v2_fetch_author_diagnosis
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AuthorDiagnosisRequest'
              description: Author diagnosis request parameters
            example:
              cookie: Your_Cookie_Here
        required: true
      responses:
        '200':
          description: >-
            Successful response. Response structure varies; refer to the actual
            API response.
components:
  schemas:
    AuthorDiagnosisRequest:
      properties:
        cookie:
          type: string
          title: Cookie
          description: User Cookie
          example: Your_Cookie_Here
      type: object
      required:
        - cookie
      title: AuthorDiagnosisRequest
      description: >-
        Author Diagnosis Request Model


        This API requires no additional parameters, automatically fetches
        diagnosis data for the past 7 days
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: AIsa API key. Get yours at https://aisa.one

````