Skip to main content
GET
/
lookup
/
username
/
{username}
/
links
Profile links by username
curl --request GET \
  --url https://frozi.lol/api/lookup/username/{username}/links \
  --header 'Authorization: Bearer <token>'
{
  "links": [
    {
      "id": "<string>",
      "name": "<string>",
      "link": "<string>",
      "title": "<string>",
      "image": "<string>",
      "clicksCount": 123,
      "linkMode": "<string>"
    }
  ]
}

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 the public links array for the profile identified by username (or alias). Requires permission api.lookup. Use URL-encoded username in the path. Each link includes id, name, link, and optionally title, image, clicksCount, linkMode.

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 alias (URL-encoded)

Response

Profile links