Skyblock Account Data API

Version 1.0.0

📊 View Dashboard

Endpoint

GET /api/account?username=PlayerName

Response Format

Returns raw profile data for all profiles, ready for external calculations:

{
  "success": true,
  "username": "Player",
  "uuid": "abc123...",
  "profiles": [
    {
      "profile_name": "Apple",
      "profile_id": "...",
      "game_mode": null,
      "selected": true,
      "data": {
        "dungeons": {
          "catacombs": { "skill": { "totalXp": 569809640 } }
        },
        "slayer": {
          "zombie": { "xp": 1000000 },
          "spider": { "xp": 1000000 },
          ...
        },
        "networth": {
          "purse": 100000000,
          "bank": 500000000,
          "networth": 5000000000,
          "types": {
            "armor": {
              "total": 100000000,
              "items": [
                { "name": "Item", "price": 100000000, "soulbound": false, "cosmetic": false, "calculation": [...] }
              ]
            }
          }
        },
        "skills": {
          "farming": { "xp": 111672425 },
          "mining": { "xp": 111672425 },
          ...
        },
        "mining": {
          "mithril_powder": { "total": 12658220 },
          "gemstone_powder": { "total": 31505666 },
          "glacite_powder": { "total": 35479533 }
        },
        "farming": {
          "jacob": {
            "unique_golds": 20,
            "perks": { "double_drops": 15, "farming_level_cap": 10 }
          }
        },
        "crimson": {
          "factions": { "mage": 12000, "barbarian": 5000 },
          "kuudra": { "none": {}, "hot": {}, "infernal": {} }
        }
      }
    }
  ]
}