Wallet API Response Data

Example Response Data

After querying our API we will provide you with a response object similar to this:

{
    "solidUser": {
        "solidScore": 167.179975351979,
        "badges": ["DEX_TRADER", "HODLER"],
        "tierGroup": "TIER_1",
        "dataPoints": {
            "feesPaid": 15.6894343065308,
            "txnsPlaced": 12.431162067816,
            "walletAge": 25.3371153706172,
            "activeDays": 25.3371153706172,
            "portfolioUsdValue": 26.4075408277806,
            "portfolioUsdVolumeByToken": 0.630481873060591,
            "portfolioUsdVolumeByTokenCategory": 1.2611909213736,
            "dexHistoricalTxnVolume": 4.90038024606534,
            "dexRecentTxnVolume": 1.50514997831991,
            "dexHistoricalUsdVolume": 8.38608433883244,
            "dexRecentUsdVolume": 8.38618909781545,
            "dexTxnVolumeByProvider": 0.353068337522437,
            "dexUsdVolumeByProvider": 0.399526147511478,
            "dexPnlPerformance": 0,
            "nftHistoricalBuyTxnVolume": 0,
            "nftRecentBuyTxnVolume": 0,
            "nftHistoricalBuyUsdVolume": 0,
            "nftRecentBuyUsdVolume": 0,
            "nftBuyTxnVolumeByCollection": 0,
            "nftBuyUsdVolumeByCollection": 0,
            "nftBuyTxnVolumeByMarketplace": 0,
            "nftBuyUsdVolumeByMarketplace": 0,
            "lpHistoricalUsdVolumeByDuration": 0,
            "lpActiveUsdVolume": 0,
            "lpUsdDepositVolumeByProgram": 0,
            "lpUsdDepositVolumeByPool": 0,
            "nativeStakingHistoricalSolVolumeByDuration": 36.1555364681161,
            "nativeStakingActiveSolVolume": 0,
            "updatedAt": "2025-01-31T08:32:40.868Z"
        },
        "isSolanaIdUser": true
    },
    "status": "up_to_date"
}

Response Data Explanation

Key
Description
Reference

solidScore

Our overall score for the provided wallet based on all on-chain criteria and categories

badges

Assigned badges to this wallet based on their on-chain activity such as "DEX_TRADER", "HODLER", etc.

tierGroups

Assigned Wallet Tier, can be Tier 1, 2, 3 or 4

dataPoints

More granular insights into the on-chain activity and data of a wallet. Each measured by a specific score within a fixed score range.

isSolanaIdUser

Indicates whether this wallet is an active user of Solana ID and has minted their Solana ID NFT

status

Status string giving more context about the returned data. Can be "up_to_date", "calculating" or "outdated".

Last updated