> ## 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` 中的一项来指定用户。



## OpenAPI

````yaml openapi-zh-Hans.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` 中的一项来指定用户。
      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

````