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

> Twitter/XアカウントのSorsa Scoreを返します。暗号資産のインフルエンサー、プロジェクト、VCからの認知や人気を推定する数値で、高いほどエコシステム内での存在感が強いことを示します。フォロワーが多い場合は応答に時間がかかる場合があります。`user_link`、`username`、`user_id`のうち1つだけを指定してください。



## OpenAPI

````yaml /openapi-ja.json get /score
openapi: 3.0.3
info:
  contact: {}
  title: Sorsa.io API
  version: '3.0'
servers:
  - url: https://api.sorsa.io/v3
security: []
paths:
  /score:
    get:
      tags:
        - 暗号資産分析
      summary: Sorsa Score
      description: >-
        Twitter/XアカウントのSorsa
        Scoreを返します。暗号資産のインフルエンサー、プロジェクト、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.ScoreResp'
          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.ScoreResp:
      properties:
        score:
          description: 影響力を示す数値。高いほどインフルエンサー、プロジェクト、VCからの認知が強いことを示します。
          example: 1.25
          type: number
      type: object
    handler.ErrorResponse:
      properties:
        message:
          type: string
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: ApiKey
      type: apiKey

````