POST
/
launcher
/
get-user-scores
Get User Scores
curl --request POST \
  --url https://api.basement.fun/launcher/get-user-scores \
  --header 'Content-Type: application/json' \
  --data '{
  "launcherJwt": "<string>",
  "limit": 50,
  "skip": 0,
  "nonce": "<string>"
}'
{
  "success": true,
  "scores": [
    {
      "score": 123,
      "nonce": "<string>",
      "updatedAt": 123
    }
  ]
}

Headers

X-Request-Nonce
string

Random string identifier for request (for signature verification)

X-Request-Signature
string

MD5 hash for request verification

Body

application/json

Response

200
application/json

Successful response

The response is of type object.