> ## 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 PGY blogger data summary

> Get PGY blogger data summary

Get PGY blogger data summary

**Pricing** — base \$0.029 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/xiaohongshu/pgy/get_blogger_data_summary" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'  # see request schema below
```


## OpenAPI

````yaml openapi/tikhub-en.json POST /tikhub/xiaohongshu/pgy/get_blogger_data_summary
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/xiaohongshu/pgy/get_blogger_data_summary:
    post:
      tags:
        - TikHub - Xiaohongshu
      summary: Get PGY blogger data summary
      description: Get PGY blogger data summary
      operationId: post_tikhub_xiaohongshu_pgy_get_blogger_data_summary
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DataSummaryReq'
        required: true
      responses:
        '200':
          description: >-
            Successful response. Response structure varies; refer to the actual
            API response.
components:
  schemas:
    DataSummaryReq:
      properties:
        user_id:
          type: string
          title: User Id
          description: Blogger user ID
          example: 5c668b3e0000000012021605
        business:
          type: integer
          enum:
            - 0
            - 1
          title: Business
          description: 'Note scope: 0=Organic notes (default), 1=Sponsored notes'
          default: 0
          example: 0
      additionalProperties: false
      type: object
      required:
        - user_id
      title: DataSummaryReq
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: AIsa API key. Get yours at https://aisa.one

````