Your agent's crypto prices are stale guesses; this returns current price, market cap, volume, and history.
Cryptocurrency prices and market data: current price, market cap, volume and 24-hour change for a coin or token, batch prices for many at once, historical price series, and asset search across major coins and tokens on many chains.
Current price, market cap, 24-hour volume and change for a single coin or token.
Coin/token name, e.g. Bitcoin, Ethereum. Use instead of, or with, symbol.
Coin/token symbol, e.g. BTC, ETH, SOL.
Optional chain to disambiguate a token that exists on several (e.g. Ethereum, Solana, Base).
curl -X POST "https://skill.askfaro.com/skills/crypto/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "What's the price of Bitcoin right now?"
}
}'askfaro describe crypto/price
Install pip install askfaro-cli, then askfaro auth login.
Find a coin or token by name, symbol, or contract address.
Name, symbol, or contract address to search for.
curl -X POST "https://skill.askfaro.com/skills/crypto/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "Search for the Pepe token"
}
}'askfaro describe crypto/search
Install pip install askfaro-cli, then askfaro auth login.
Historical price series for a coin or token, optionally over a date range.
Optional range end, Unix timestamp in milliseconds.
Optional range start, Unix timestamp in milliseconds.
Coin/token name, e.g. Bitcoin, Ethereum. Use instead of, or with, symbol.
Coin/token symbol, e.g. BTC, ETH.
Optional chain to disambiguate a multi-chain token.
curl -X POST "https://skill.askfaro.com/skills/crypto/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "Show Bitcoin's price over the last year"
}
}'askfaro describe crypto/history
Install pip install askfaro-cli, then askfaro auth login.
Current prices and market data for many coins or tokens in one call.
Comma-separated names, e.g. "Bitcoin,Ethereum". Use instead of symbols.
Comma-separated symbols, e.g. "BTC,ETH,SOL".
curl -X POST "https://skill.askfaro.com/skills/crypto/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "Get prices for BTC, ETH, and SOL"
}
}'askfaro describe crypto/multi_price
Install pip install askfaro-cli, then askfaro auth login.