Tools/crypto
Crypto Prices

Crypto Prices

Active

Your agent's crypto prices are stale guesses; this returns current price, market cap, volume, and history.

4 tools

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.

Finance & Marketscryptocryptocurrencybitcoinpricesmarket-data

Tools (4)

Current price, market cap, 24-hour volume and change for a single coin or token.

0.1 credits/call ($0.0001) · 0.1 credit per call

Example prompts

  • What's the price of Bitcoin right now?
  • How much is Ethereum worth?
  • Get the 24-hour change for Solana
  • Current market cap of Dogecoin

Parameters

assetstringoptional

Coin/token name, e.g. Bitcoin, Ethereum. Use instead of, or with, symbol.

symbolstringoptional

Coin/token symbol, e.g. BTC, ETH, SOL.

blockchainstringoptional

Optional chain to disambiguate a token that exists on several (e.g. Ethereum, Solana, Base).

API Usage

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?"
  }
}'

CLI Usage

askfaro describe crypto/price

Install pip install askfaro-cli, then askfaro auth login.

Find a coin or token by name, symbol, or contract address.

0.1 credits/call ($0.0001) · 0.1 credit per call

Example prompts

  • Search for the Pepe token
  • Find the contract address for USDC
  • Which chains is Chainlink on?

Parameters

inputstringrequired

Name, symbol, or contract address to search for.

API Usage

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"
  }
}'

CLI Usage

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.

0.1 credits/call ($0.0001) · 0.1 credit per call

Example prompts

  • Show Bitcoin's price over the last year
  • Historical price of Ethereum for January 2024
  • How has Solana moved over time?
  • What was BTC worth on a given date?

Parameters

tointegeroptional

Optional range end, Unix timestamp in milliseconds.

fromintegeroptional

Optional range start, Unix timestamp in milliseconds.

assetstringoptional

Coin/token name, e.g. Bitcoin, Ethereum. Use instead of, or with, symbol.

symbolstringoptional

Coin/token symbol, e.g. BTC, ETH.

blockchainstringoptional

Optional chain to disambiguate a multi-chain token.

API Usage

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"
  }
}'

CLI Usage

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.

0.1 credits/call ($0.0001) · 0.1 credit per call

Example prompts

  • Get prices for BTC, ETH, and SOL
  • Show me the current value of Bitcoin and Ethereum
  • Price several coins at once

Parameters

assetsstringoptional

Comma-separated names, e.g. "Bitcoin,Ethereum". Use instead of symbols.

symbolsstringoptional

Comma-separated symbols, e.g. "BTC,ETH,SOL".

API Usage

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"
  }
}'

CLI Usage

askfaro describe crypto/multi_price

Install pip install askfaro-cli, then askfaro auth login.