Skip to main content
GET
/
v0
/
players
/
profiles
/
latest
Get latest player profile
curl --request GET \
  --url https://controller.platform.simplecloud.app/v0/players/profiles/latest \
  --header 'X-Network-ID: <x-network-id>' \
  --header 'X-Network-Secret: <x-network-secret>'
{
  "created_at": "2023-01-01T12:00:00Z",
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "name": "Steve",
  "player_id": "069a79f4-44e9-4726-a5be-fca90e38aaf5",
  "texture": "base64-encoded-texture"
}

Headers

X-Network-ID
string
required

Network ID

X-Network-Secret
string
required

Network Secret

Query Parameters

player_id
string
required

Player UUID (Minecraft UUID)

Response

OK

Player profile with name and skin data

created_at
string
Example:

"2023-01-01T12:00:00Z"

id
string
Example:

"123e4567-e89b-12d3-a456-426614174000"

name
string
Example:

"Steve"

player_id
string
Example:

"069a79f4-44e9-4726-a5be-fca90e38aaf5"

texture
string
Example:

"base64-encoded-texture"