> ## 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-following
openapi: 3.0.3
info:
  contact: {}
  title: Sorsa.io API
  version: '3.0'
servers:
  - url: https://api.sorsa.io/v3
security: []
paths:
  /top-following:
    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.FollowersResponse'
          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.FollowersResponse:
      properties:
        users:
          description: フォロー日時を含むフォロワープロフィールの配列。
          items:
            $ref: '#/components/schemas/common.Follower'
          type: array
      type: object
    handler.ErrorResponse:
      properties:
        message:
          type: string
      type: object
    common.Follower:
      properties:
        bio_urls:
          description: 自己紹介内のURL。
          items:
            type: string
          type: array
        can_dm:
          description: アカウントが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
        favourites_count:
          description: このユーザーが「いいね」したツイートの総数。
          example: 1200
          type: integer
        followerDate:
          description: このユーザーが対象アカウントをフォローし始めた日時。ISO 8601形式。
          example: '2024-01-15T10:30:00Z'
          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
        media_count:
          description: このユーザーが投稿したメディアの総数。
          example: 300
          type: integer
        pinned_tweet_ids:
          description: ユーザーの固定ツイートのID。
          items:
            type: string
          type: array
        possibly_sensitive:
          description: センシティブな内容を含む可能性があると指定されているか。
          example: false
          type: boolean
        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
        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

````