Skills/Crypto Prices/Price several assets

Price several assets

0.1 credits / call

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.

Use when

You want to price a basket or portfolio without a separate call per coin.

Not for

A historical series, or resolving an unknown ticker.

Cost

0.1 credits / call

What it accepts

Set these inside the intent when you run it.

assetsrequired

The coins or tokens to price, as a list of names or ticker symbols.

What you get back

Current price in USD, market cap, volume, and 24-hour percentage change for each requested asset, keyed by identifier.

Run it

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

  • What are the current prices of Bitcoin, Ethereum, and Solana?
  • Give me a snapshot of my crypto portfolio: BTC, ETH, ADA, and DOT.
  • Compare the prices of the top 5 coins right now.