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

> Returns the Sorsa Score for a Twitter/X account. The score is a numeric value that estimates the account's recognition and popularity among crypto influencers, projects, and venture capital firms. A higher score indicates stronger visibility within the ecosystem. For accounts with a large follower base, the response may take longer to generate. Identify the user by providing exactly one of: `user_link`, `username`, or `user_id`.



## OpenAPI

````yaml https://api.sorsa.io/v3/swagger.json get /score
openapi: 3.0.3
info:
  contact: {}
  title: API Sorsa.io
  version: '3.0'
servers:
  - url: https://api.sorsa.io/v3
security: []
paths:
  /score:
    get:
      tags:
        - Sorsa Info Crypto Related
      summary: Sorsa Score
      description: >-
        Returns the Sorsa Score for a Twitter/X account. The score is a numeric
        value that estimates the account's recognition and popularity among
        crypto influencers, projects, and venture capital firms. A higher score
        indicates stronger visibility within the ecosystem. For accounts with a
        large follower base, the response may take longer to generate. Identify
        the user by providing exactly one of: `user_link`, `username`, or
        `user_id`.
      parameters:
        - description: Full URL of the user's Twitter/X profile.
          in: query
          name: user_link
          schema:
            type: string
        - description: Twitter/X handle (without @).
          in: query
          name: username
          schema:
            type: string
        - description: Numeric Twitter/X user ID.
          in: query
          name: user_id
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/sorsa.ScoreResp'
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/handler.ErrorResponse'
          description: Bad Request
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/handler.ErrorResponse'
          description: Unauthorized
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/handler.ErrorResponse'
          description: Forbidden
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/handler.ErrorResponse'
          description: Not Found
        '429':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/handler.ErrorResponse'
          description: Too Many Requests
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/handler.ErrorResponse'
          description: Internal Server Error
      security:
        - ApiKeyAuth: []
components:
  schemas:
    sorsa.ScoreResp:
      properties:
        score:
          description: >-
            Numeric influence score. Higher values indicate stronger recognition
            among influencers, projects, and VCs.
          example: 1.25
          type: number
      type: object
    handler.ErrorResponse:
      properties:
        message:
          type: string
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: ApiKey
      type: apiKey

````