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

# スコア上位20人のフォロワー

> 指定アカウントのフォロワーのうちSorsa Score上位20人を返します。プロフィールとフォロー日時を含み、オーディエンス内で最も影響力のある人を見つけられます。`user_link`、`username`、`user_id`のうち1つだけを指定してください。



## OpenAPI

````yaml /openapi-ja.json get /top-followers
openapi: 3.0.3
info:
  contact: {}
  title: Sorsa.io API
  version: '3.0'
servers:
  - url: https://api.sorsa.io/v3
security: []
paths:
  /top-followers:
    get:
      tags:
        - 暗号資産分析
      summary: スコア上位20人のフォロワー
      description: >-
        指定アカウントのフォロワーのうちSorsa
        Score上位20人を返します。プロフィールとフォロー日時を含み、オーディエンス内で最も影響力のある人を見つけられます。`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/common.TopFollowersResponse'
          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:
    common.TopFollowersResponse:
      properties:
        users:
          description: フォロー日時を含むフォロワープロフィールの配列。
          items:
            $ref: '#/components/schemas/common.TopFollower'
          type: array
      type: object
    handler.ErrorResponse:
      properties:
        message:
          type: string
      type: object
    common.TopFollower:
      properties:
        can_dm:
          example: false
          type: boolean
        created_at:
          description: アカウント作成日時。ISO 8601形式。
          example: '2009-06-02T20:12:29Z'
          type: string
        description:
          description: プロフィールの自己紹介文。
          example: Bio text
          type: string
        display_name:
          description: ユーザーの表示名。
          example: Elon Musk
          type: string
        follower_date:
          example: '2009-06-02T20:12:29Z'
          type: string
        followers_count:
          description: このユーザーをフォローしているアカウント数。
          example: 100000
          type: integer
        followings_count:
          description: このユーザーがフォローしているアカウント数。
          example: 500
          type: integer
        id:
          description: 一意のTwitter/XユーザーID。
          example: '44196397'
          type: string
        profile_background_image_url:
          description: ユーザーのプロフィール背景画像のURL。
          example: https://pbs.twimg.com/profile_banners/44196397/123
          type: string
        profile_image_url:
          description: ユーザーのアバター画像のURL。
          example: https://pbs.twimg.com/profile_images/123/photo.jpg
          type: string
        protected:
          description: アカウントのツイートが保護されている（非公開）か。
          example: false
          type: boolean
        score:
          description: アカウントがDMを受け付けているか。
          example: 100
          type: number
        tweets_count:
          description: このユーザーが投稿したツイートの総数。
          example: 5000
          type: integer
        username:
          description: 現在のTwitter/Xユーザー名（@なし）。
          example: elonmusk
          type: string
        verified:
          description: アカウントに認証バッジがあるか。
          example: true
          type: boolean
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: ApiKey
      type: apiKey

````