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": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  "username": "string",
  "role": "ADMIN",
  "email": "user@example.com",
  "server_permissions": [
    {
      "global_permission": "CREATE_INSTANCE",
      "granted": true
    }
  ],
  "server_info": {
    "version": "string",
    "commit_hash": "string",
    "branch_name": "string",
    "public_api_address": "http://example.com",
    "public_webdav_address": "http://example.com",
    "public_docs_address": "http://example.com",
    "public_mcp_address": "http://example.com",
    "minecraft_version": "string"
  }
}

How is this page?