> ## 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の変化

> 過去7日間と30日間のSorsa Score変化量を返します。勢いを追い、影響力が増加・減少するアカウントを見つけられます。対象はSorsaデータベースに登録済みである必要があります。`user_link`、`username`、`user_id`のうち1つだけを指定してください。



## OpenAPI

````yaml /openapi-ja.json get /score-changes
openapi: 3.0.3
info:
  contact: {}
  title: Sorsa.io API
  version: '3.0'
servers:
  - url: https://api.sorsa.io/v3
security: []
paths:
  /score-changes:
    get:
      tags:
        - 暗号資産分析
      summary: Sorsa Scoreの変化
      description: >-
        過去7日間と30日間のSorsa
        Score変化量を返します。勢いを追い、影響力が増加・減少するアカウントを見つけられます。対象はSorsaデータベースに登録済みである必要があります。`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.ScoreChangesResp'
          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.ScoreChangesResp:
      properties:
        month_delta:
          description: 過去30日間のスコア変化量。
          example: 24
          type: number
        week_delta:
          description: 過去7日間のスコア変化量。
          example: 12
          type: number
      type: object
    handler.ErrorResponse:
      properties:
        message:
          type: string
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: ApiKey
      type: apiKey

````