> ## 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。该数字评分用于估计账号在加密货币意见领袖、项目和风投机构中的认可度与受欢迎程度。分数越高，表示在生态系统中的可见度越强。粉丝数量较多的账号可能需要更长时间生成响应。请且仅请提供 `user_link`、`username` 或 `user_id` 中的一项来指定用户。



## OpenAPI

````yaml openapi-zh-Hans.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。该数字评分用于估计账号在加密货币意见领袖、项目和风投机构中的认可度与受欢迎程度。分数越高，表示在生态系统中的可见度越强。粉丝数量较多的账号可能需要更长时间生成响应。请且仅请提供
        `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.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: 数字影响力评分。数值越高，表示在意见领袖、项目和风投群体中的认可度越高。
          example: 1.25
          type: number
      type: object
    handler.ErrorResponse:
      properties:
        message:
          type: string
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: ApiKey
      type: apiKey

````