Skip to main content

Sparked.lol

Base URL: https://drain.lat/api/v1/sparked
Fetch a sparked.lol user profile including bio, links, badges, and premium status.
GET /api/v1/sparked/profile/:username
username
string
required
The sparked.lol username to look up.
curl "https://drain.lat/api/v1/sparked/profile/sparked" \
  -H "x-api-key: YOUR_API_KEY"
username
string
sparked.lol username.
uuid
string
User unique identifier.
displayName
string
Display name.
bio
string
User bio text.
avatarUrl
string
Avatar image URL.
isPremium
boolean
Whether the user has premium status.
profileViews
number
Total profile views.
joinedAt
string
Account creation date (ISO 8601).
location
string
User location.
colors
object
backgroundUrl
string
Background image URL.
backgroundImages
array
Array of background image URLs.
discordPresence
object
badges
array
profileUrl
string
Link to the sparked.lol profile.
Response
{
  "username": "sparked",
  "uuid": "abc123-def456-...",
  "displayName": "Sparked",
  "bio": "User bio text here",
  "avatarUrl": "https://...",
  "isPremium": true,
  "profileViews": 12345,
  "joinedAt": "2024-01-01T00:00:00Z",
  "location": "Earth",
  "colors": {
    "primary": "#ff0000",
    "secondary": "#00ff00"
  },
  "backgroundUrl": "https://...",
  "backgroundImages": ["https://...", "https://..."],
  "discordPresence": {
    "status": "online",
    "activity": "Playing a game"
  },
  "links": [
    {
      "id": "link1",
      "title": "Twitter",
      "url": "https://twitter.com/...",
      "sortOrder": 1,
      "icon": "twitter",
      "copyOnClick": false
    }
  ],
  "badges": [
    {
      "id": "verified",
      "color": "#0099ff"
    }
  ],
  "profileUrl": "https://sparked.lol/sparked",
  "scrapedAt": "2026-05-31T00:00:00Z"
}