> ## 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従業員に分け、対象が非公開かも返します。データベースに登録済みなら高速に応答します。新規アカウント、特にフォロワーが多い場合は初回収集に時間がかかります。`user_link`、`username`、`user_id`のうち1つだけを指定してください。



## OpenAPI

````yaml /openapi-ja.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従業員に分け、対象が非公開かも返します。データベースに登録済みなら高速に応答します。新規アカウント、特にフォロワーが多い場合は初回収集に時間がかかります。`user_link`、`username`、`user_id`のうち1つだけを指定してください。
      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: VC従業員に分類されたフォロワー数。
          example: 1
          type: integer
      type: object
    handler.ErrorResponse:
      properties:
        message:
          type: string
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: ApiKey
      type: apiKey

````