Wallet Data

Wallet endpoints include deployed tokens by a dev wallet and wallet holdings with balances and ownership percentages—enough to power lightweight explorers and portfolio overviews.

Get Tokens by Deployer

get

Returns a list of tokens where the specified wallet address is the developer (devWallet).

Path parameters
walletAddressstringRequired

The wallet address of the deployer (devWallet)

Query parameters
limitinteger · min: 1 · max: 100Optional

Maximum number of tokens to return (default: 10, min: 1, max: 100)

Default: 10
Responses
200

List of tokens deployed by the wallet

application/json
get
/wallets/{walletAddress}/deployed

Get Wallet Holdings

get

Retrieve the token holdings of a given wallet address, including balances and percentage ownership per token.

Path parameters
walletAddressstringRequired

The wallet address to fetch holdings for

Query parameters
limitinteger · min: 1 · max: 100Optional

Maximum number of tokens to return (default 10, max 100)

Default: 10
Responses
200

Wallet holdings data

application/json
get
/wallets/{walletAddress}/holdings

Wallet PnL by Token

get

Calculate realized and unrealized profit and loss (PnL) for a wallet on a specific token.

Path parameters
walletAddressstringRequired

The wallet address to calculate PnL for

tokenAddressstringRequired

The token contract address

Responses
200

PnL calculation for wallet and token

application/json
get
/wallets/{walletAddress}/pnl/{tokenAddress}

Last updated