SoulFire LogoSoulFire

Get client data

Retrieves comprehensive data about the authenticated client and the server. Returns user profile information, granted permissions, and server metadata.

GET
/v1/client

Retrieves comprehensive data about the authenticated client and the server. Returns user profile information, granted permissions, and server metadata.

Authorization

AuthorizationBearer <token>

Preferred API authentication. Use a JWT with the api audience.

In: header

Response Body

application/json

application/json

application/json

application/json

curl -X GET "http://127.0.0.1:38765/v1/client"
{
  "id": "string",
  "username": "string",
  "role": "ADMIN",
  "email": "string",
  "server_permissions": [
    {
      "global_permission": "CREATE_INSTANCE",
      "granted": true
    }
  ],
  "server_info": {
    "version": "string",
    "commit_hash": "string",
    "branch_name": "string",
    "public_api_address": "string",
    "public_webdav_address": "string",
    "public_docs_address": "string",
    "public_mcp_address": "string",
    "minecraft_version": "string"
  }
}
{
  "code": 0,
  "grpc-code": "string",
  "message": "string",
  "stack-trace": "string",
  "details": [
    {}
  ]
}
{
  "code": 0,
  "grpc-code": "string",
  "message": "string",
  "stack-trace": "string",
  "details": [
    {}
  ]
}
{
  "code": 0,
  "grpc-code": "string",
  "message": "string",
  "stack-trace": "string",
  "details": [
    {}
  ]
}

How is this page?