Retrieve wallet transaction history across 150+ blockchains via Allium's onchain data API.
What it does
This MPP endpoint from Allium returns wallet transaction history for a given address. Allium indexes over 150 chains (EVM, Solana, Bitcoin, and more) and serves enterprise-grade blockchain data used by teams like Phantom, Uniswap, and Coinbase. The endpoint is part of Allium's AgentHub, which packages that same infrastructure for AI agents.
The endpoint is designed to accept payment per request via x402 (USDC on Base) or via a traditional API key. During probing, the endpoint returned HTTP 405 on both HEAD and GET, which suggests it likely requires a POST method. No OpenAPI schema, pricing details, or detailed parameter documentation were found in the crawl. The Allium docs page (docs.allium.so) is referenced but the agents.allium.so/docs path returns 404, so request/response schemas must be inferred from the endpoint path and the provider's general description.
Based on the URL structure (`/api/v1/developer/wallet/transactions`), the endpoint likely accepts a wallet address (and possibly chain identifier and pagination parameters) and returns a list of transactions associated with that wallet. Without captured schema or example responses, exact field names and formats remain unknown.
Capabilities
Use cases
- —Querying transaction history for a specific wallet address across multiple blockchains
- —Building portfolio tracking agents that need historical transaction data
- —Monitoring wallet activity for compliance or alerting purposes
- —Feeding onchain transaction data into AI agent workflows for analysis
Fit
Best for
- —AI agents needing programmatic access to multi-chain wallet transaction data
- —Developers building cross-chain portfolio or activity dashboards
- —Automated onchain monitoring and alerting pipelines
Not for
- —Real-time streaming of mempool or pending transactions (this appears to be a request/response API)
- —Querying non-blockchain or traditional finance transaction data
Quick start
curl -X POST https://agents.allium.so/api/v1/developer/wallet/transactions \
-H "Content-Type: application/json" \
-d '{"address": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045", "chain": "ethereum"}'Example
Request
{
"chain": "ethereum",
"address": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
}Endpoint
Quality
The endpoint returned 405 on HEAD and GET (likely requires POST), so no 402 MPP challenge was captured. No OpenAPI schema, no docs, no pricing, and no example responses are available. The request schema and response format are entirely inferred from the URL path and general Allium marketing copy. This is effectively a stub listing.
Warnings
- —Endpoint returned 405 on HEAD and GET — likely requires POST; no 402 MPP challenge was captured so liveness is unconfirmed via probe.
- —No OpenAPI or schema documentation found; request/response fields are inferred and unverified.
- —No pricing information available — the landing page mentions USDC on Base via x402 but no specific per-call cost was captured.
- —The agents.allium.so/docs path returns 404; detailed documentation is not publicly accessible at the crawled URLs.
- —Example request JSON is speculative based on URL structure and common patterns; actual required parameters are unknown.
Citations
- —Allium indexes 150+ chains including EVM, Solana, and Bitcoinhttps://agents.allium.so
- —AgentHub supports x402 with USDC on Base or traditional API key authenticationhttps://agents.allium.so
- —Allium's data infrastructure is used by Phantom, Uniswap, and Coinbasehttps://agents.allium.so