Service
Allium
Allium is the enterprise blockchain data platform powering analytics, engineering, and accounting with unmatched breadth, depth, and accuracy.
x402
mpp
Methods
12 methods available
POST/api/v1/developer/prices2000 USDC
/api/v1/developer/pricesToken Latest Price
POST JSON body with tokens array. Each token needs chain and contract address. Returns latest prices in specified currencies.
{
"body": {
"tokens": [
{
"chain": "string (e.g. 'ethereum', 'solana', 'base')",
"address": "string (contract address)"
}
],
"currencies": [
"string (optional, default ['usd'])"
]
}
}POST/api/v1/developer/prices/at-timestamp2000 USDC
/api/v1/developer/prices/at-timestampToken Price at Timestamp
POST JSON body with tokens and a Unix timestamp. Returns the price of each token at that specific point in time.
{
"body": {
"tokens": [
{
"chain": "string",
"address": "string"
}
],
"timestamp": "number (Unix timestamp in seconds)",
"currencies": [
"string (optional)"
]
}
}POST/api/v1/developer/prices/history2000 USDC
/api/v1/developer/prices/historyToken Price History
POST JSON body with tokens, date range, and optional interval. Returns historical price data points.
{
"body": {
"tokens": [
{
"chain": "string",
"address": "string"
}
],
"start_date": "string (YYYY-MM-DD)",
"end_date": "string (YYYY-MM-DD)",
"interval": "string (optional: '1d' or '1h')",
"currencies": [
"string (optional)"
]
}
}POST/api/v1/developer/prices/stats2000 USDC
/api/v1/developer/prices/statsToken Price Stats
POST JSON body with tokens. Returns price statistics (high, low, avg, change) over the specified period.
{
"body": {
"tokens": [
{
"chain": "string",
"address": "string"
}
],
"period": "string (optional, e.g. '7d', '30d')",
"currencies": [
"string (optional)"
]
}
}GET/api/v1/developer/tokens3000 USDC
/api/v1/developer/tokensList Tokens
GET with optional query params. Returns a paginated list of tokens with metadata. Use chain to filter by blockchain.
{
"query": {
"chain": "string (optional, filter by chain)",
"limit": "number (optional, default 100)",
"offset": "number (optional, default 0)"
}
}POST/api/v1/developer/tokens/chain-address2000 USDC
/api/v1/developer/tokens/chain-addressGet Tokens by Chain Address
POST JSON body with tokens array. Look up token metadata by chain and contract address.
{
"body": {
"tokens": [
{
"chain": "string",
"address": "string"
}
]
}
}GET/api/v1/developer/tokens/search3000 USDC
/api/v1/developer/tokens/searchSearch Tokens
GET with query param. Search for tokens by name, symbol, or contract address.
{
"query": {
"query": "string (search by name, symbol, or address)"
}
}POST/api/v1/developer/wallet/balances3000 USDC
/api/v1/developer/wallet/balancesLatest Token Balances
POST JSON body with wallet address. Returns current token balances across all chains, or filter with chains array.
{
"body": {
"address": "string (wallet address)",
"chains": [
"string (optional, filter by chains)"
]
}
}POST/api/v1/developer/wallet/balances/history3000 USDC
/api/v1/developer/wallet/balances/historyHistorical Token Balances
POST JSON body with wallet address and date range. Returns historical token balance snapshots.
{
"body": {
"address": "string (wallet address)",
"chains": [
"string (optional)"
],
"start_date": "string (YYYY-MM-DD)",
"end_date": "string (YYYY-MM-DD)"
}
}POST/api/v1/developer/wallet/pnl3000 USDC
/api/v1/developer/wallet/pnlHoldings PnL
POST JSON body with wallet address. Returns profit/loss data for token holdings.
{
"body": {
"address": "string (wallet address)",
"chains": [
"string (optional)"
]
}
}POST/api/v1/developer/wallet/transactions3000 USDC
/api/v1/developer/wallet/transactionsTransactions
POST JSON body with wallet address. Returns transaction history. Paginate with limit/offset.
{
"body": {
"address": "string (wallet address)",
"chains": [
"string (optional)"
],
"limit": "number (optional)",
"offset": "number (optional)"
}
}GET/api/v1/docs/docs/browse1000 USDC
/api/v1/docs/docs/browseBrowse documentation hierarchy
GET with optional path query param. Browse Allium API documentation hierarchy.
{
"query": {
"path": "string (optional, documentation section path)"
}
}