> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sorsa.io/llms.txt
> Use this file to discover all available pages before exploring further.

# 粉丝分类统计

> 返回按 Sorsa 类别划分的账号粉丝明细：意见领袖、项目和风投（VC）员工，并指明账号是否受保护。如果账号已被 Sorsa 数据库索引，响应会较快。新账号的首次数据采集可能更久，尤其是粉丝量较大时。请且仅请提供 `user_link`、`username` 或 `user_id` 中的一项来指定用户。



## OpenAPI

````yaml openapi-zh-Hans.json GET /followers-stats
openapi: 3.0.3
info:
  contact: {}
  title: Sorsa.io API
  version: '3.0'
servers:
  - url: https://api.sorsa.io/v3
security: []
paths:
  /followers-stats:
    get:
      tags:
        - 加密货币分析
      summary: 粉丝分类统计
      description: >-
        返回按 Sorsa 类别划分的账号粉丝明细：意见领袖、项目和风投（VC）员工，并指明账号是否受保护。如果账号已被 Sorsa
        数据库索引，响应会较快。新账号的首次数据采集可能更久，尤其是粉丝量较大时。请且仅请提供 `user_link`、`username` 或
        `user_id` 中的一项来指定用户。
      parameters:
        - description: 用户 Twitter/X 个人资料的完整 URL。
          in: query
          name: user_link
          schema:
            type: string
        - description: Twitter/X 用户名（不含 @）。
          in: query
          name: username
          schema:
            type: string
        - description: Twitter/X 数字用户 ID。
          in: query
          name: user_id
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/sorsa.FollowersStatsResp'
          description: 成功
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/handler.ErrorResponse'
          description: 请求无效
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/handler.ErrorResponse'
          description: 未授权
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/handler.ErrorResponse'
          description: 禁止访问
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/handler.ErrorResponse'
          description: 未找到
        '429':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/handler.ErrorResponse'
          description: 请求过多
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/handler.ErrorResponse'
          description: 服务器内部错误
      security:
        - ApiKeyAuth: []
components:
  schemas:
    sorsa.FollowersStatsResp:
      properties:
        followers_count:
          description: 已分类粉丝总数。
          example: 16
          type: integer
        influencers_count:
          description: 被归类为意见领袖的粉丝数。
          example: 12
          type: integer
        projects_count:
          description: 被归类为项目的粉丝数。
          example: 3
          type: integer
        user_protected:
          description: 目标账号受保护时为 `true`。
          example: false
          type: boolean
        venture_capitals_count:
          description: 被归类为风投员工的粉丝数。
          example: 1
          type: integer
      type: object
    handler.ErrorResponse:
      properties:
        message:
          type: string
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: ApiKey
      type: apiKey

````