Historical token price series across 150+ blockchains via Allium's onchain data infrastructure.
What it does
This endpoint provides historical token price data sourced from Allium, a blockchain data infrastructure provider that indexes over 150 chains including EVM networks, Solana, and Bitcoin. Allium powers data pipelines for organizations like Phantom, Uniswap, and Coinbase, and this endpoint packages that same enterprise-grade price data for programmatic and agent-based consumption.
The endpoint is part of Allium's AgentHub, which supports both traditional API key authentication and x402 machine-to-machine payments (USDC on Base). It is designed for AI agents and developer tooling, allowing queries for historical token price series. The specific request format (query parameters, supported tokens, time ranges, granularity) is not documented in the crawled material, and no OpenAPI schema was found.
Note: During probing, the endpoint returned HTTP 405 (Method Not Allowed) on both HEAD and GET requests, which suggests it may require a POST method or specific headers/parameters not tested. The endpoint could not be confirmed live via the standard MPP 402 challenge flow. Allium's docs page (agents.allium.so/docs) returned 404, and no pricing page was found. Users should consult Allium's GitHub skills repository or main documentation at docs.allium.so for integration details.
Capabilities
Use cases
- —Retrieving historical price data for tokens across 150+ blockchains for portfolio analytics
- —Feeding historical price series into trading or DeFi strategy backtesting agents
- —Building dashboards or reports that require multi-chain token price history
- —Calculating historical PnL for wallets using token price lookups
Fit
Best for
- —AI agents needing programmatic access to historical crypto price data
- —Developers building multi-chain analytics tools
- —Automated portfolio tracking and PnL calculation
Not for
- —Real-time sub-second price feeds for high-frequency trading
- —Non-crypto or traditional equity/forex price data
Quick start
# Allium AgentHub skills install (for compatible agents)
npx skills add https://github.com/allium-labs/skills --yes
# Direct API call (method and params not fully documented; likely POST)
curl -X POST https://agents.allium.so/api/v1/developer/prices/history \
-H 'Content-Type: application/json' \
-d '{"token": "ETH", "chain": "ethereum", "start": "2024-01-01", "end": "2024-06-01"}'Endpoint
Quality
The endpoint returned 405 on HEAD and GET, so it could not be confirmed live via standard MPP probing. No OpenAPI schema, no request/response examples, and no pricing details were found. The docs page returned 404. All capability claims are inferred from the landing page marketing copy rather than verified technical documentation.
Warnings
- —Endpoint returned 405 on HEAD and GET — may require POST or specific parameters; could not confirm liveness via MPP 402 challenge
- —No OpenAPI or schema documentation found for this endpoint
- —Allium AgentHub docs page (agents.allium.so/docs) returns 404
- —No pricing information available — landing page mentions USDC on Base via x402 but no specific per-call cost was captured
- —Request and response formats are unknown; example_request_json and example_response_json are null
Citations
- —Allium indexes 150+ chains including EVM, Solana, and Bitcoinhttps://agents.allium.so
- —AgentHub supports x402 payment protocol with USDC on Basehttps://agents.allium.so
- —Allium powers data for Phantom, Uniswap, Coinbasehttps://agents.allium.so
- —Skills can be installed via npx from GitHubhttps://agents.allium.so