Skip to main content
GET
/
discord
/
user
/
{snowflake}
/
profile
Fetch User Profile and Linked Accounts
curl --request GET \
  --url https://api.example.com/discord/user/{snowflake}/profile
{
  "linked_accounts": [
    {
      "id": "<string>",
      "is_primary": true,
      "snowflake": "<string>"
    }
  ],
  "user_profile": {
    "locale": "<string>",
    "snowflake": "<string>"
  }
}

Path Parameters

snowflake
string
required

Discord Snowflake ID or Minecraft UUID to fetch profile for

Response

Successfully retrieved user profile and linked accounts

linked_accounts
object[]
user_profile
object