Skip to main content
GET
/
lookup
/
username
/
{username}
Profile by username
curl --request GET \
  --url https://frozi.lol/api/lookup/username/{username} \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "username": "<string>",
  "displayName": "<string>",
  "badges": [
    {
      "name": "<string>",
      "enabled": true
    }
  ],
  "assets": {},
  "customize": {},
  "discordID": "<string>",
  "discordClean": {},
  "banned": true,
  "viewsCount": 123,
  "followersCount": 123,
  "createdAt": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.frozi.lol/llms.txt

Use this file to discover all available pages before exploring further.

Returns a SimplifiedProfile by primary username or profile alias. Requires permission api.lookup. Use URL-encoded username in the path. followersCount is null if the profile has “show followers count” disabled. Email and other private fields are never returned.

Authorizations

Authorization
string
header
required

API key from Dashboard → Developer Platform → API Keys. Send as: Authorization: Bearer <API_KEY>

Path Parameters

username
string
required

Primary username or profile alias (URL-encoded)

Response

Simplified profile

Public profile representation. Email and other private fields are never returned.

id
integer

Profile ID

username
string
displayName
string
badges
object[]
assets
object
customize
object
discordID
string | null
discordClean
object
banned
boolean
viewsCount
number
followersCount
number | null

Null if profile has 'show followers count' disabled

createdAt
string<date-time>