Fetches current prices and market data for several coins or tokens in a single request. Ideal for checking a portfolio, comparing assets side by side, or building a market overview without making one call per coin.
You want to price a basket or portfolio without a separate call per coin.
A historical series, or resolving an unknown ticker.
0.1 credits / call
Set these inside the intent when you run it.
The coins or tokens to price, as a list of names or ticker symbols.
Current price in USD, market cap, volume, and 24-hour percentage change for each requested asset, keyed by identifier.
Run this sub-skill directly: pin it with operation and pass its inputs in the intent. (Omit operation and the Crypto Prices skill will route from your intent instead.)
curl -X POST "https://skill.askfaro.com/skills/crypto/run" \
-H "Authorization: Bearer $FARO_TOKEN" \
-H "Content-Type: application/json" \
-d '{"intent":{"operation":"multi_price","assets":"Bitcoin, Ethereum, Solana"}}'Example requests