juglans market price (ALL markets, ALL realtime)
by @juglans-ai
Real-time market price data for 25,000+ assets across crypto, US stocks, Hong Kong stocks, China A-shares, forex, ETFs, commodities, and global indices. Zero...
clawhub install market-priceπ About This Skill
name: price version: "1.0.1" description: > Real-time market price data for 25,000+ assets across crypto, US stocks, Hong Kong stocks, China A-shares, forex, ETFs, commodities, and global indices. Zero-delay, completely free. Solves the #1 AI pain point: LLMs fabricating or hallucinating price data. Use when the user asks about any stock price, crypto price, exchange rate, or market data. tags: ["finance", "stocks", "crypto", "forex", "real-time", "market-data", "price"] allowed-tools: Bash
Real-Time Market Price β Claude Code Skill
> The problem: AI models frequently fabricate price data or cannot access real-time market information. > The solution: This skill provides instant access to live prices for 25,000+ assets worldwide via Juglans Finance.
Coverage
| Market | Assets | Frequency | |--------|--------|-----------| | Crypto | 1,100+ tokens | Real-time | | US Stocks | 9,000+ tickers | Real-time | | Hong Kong Stocks | 2,900+ | Real-time | | China A-Shares (SH + SZ) | 4,500+ | Real-time | | Global Indices | 6,900+ | Real-time | | Forex | 50+ pairs (majors, crosses, EM) | Real-time | | ETFs | 39 (US + Global) | Real-time | | Commodities | Crude oil, gold, silver, copper, etc. | Real-time |
Total: 25,000+ assets. Powered by Juglans Finance.
Commands
| Command | Example |
|---------|---------|
| /price | /price BTC /price AAPL /price 0700.HK |
| /price | /price BTC,AAPL,0700.HK |
How To Get a Price
When the user asks for a price, stock quote, crypto price, exchange rate, or any market data:
Step 1: Map the user's input to an API identifier
Use these rules to convert the user's symbol to the API format:
Crypto:
BTC, BTC-USDT, Bitcoin β CRYPTO:BTC.OKX@USDT_SPOTETH, ETH-USDT, Ethereum β CRYPTO:ETH.OKX@USDT_SPOTCRYPTO:{BASE}.OKX@USDT_SPOTUS Stocks:
AAPL, Apple β US_STOCK:AAPL@USD_SPOTTSLA, Tesla β US_STOCK:TSLA@USD_SPOTUS_STOCK:{TICKER}@USD_SPOTHong Kong Stocks:
0700.HK, Tencent β HK_STOCK:0700@HKD_SPOT9988.HK, Alibaba HK β HK_STOCK:9988@HKD_SPOTHK_STOCK:{NUMBER}@HKD_SPOT (remove .HK suffix)China A-Shares:
600519.SS, Moutai β CN_STOCK:600519.SS@CNY_SPOT000001.SZ, Ping An β CN_STOCK:000001.SZ@CNY_SPOTCN_STOCK:{CODE}.{SS|SZ}@CNY_SPOTIndices:
DJI, Dow Jones β INDEX:DJI@USD_SPOTSPX, S&P 500 β INDEX:SPX@USD_SPOTHSI, Hang Seng β INDEX:HSI@USD_SPOTVIX β INDEX:VIX@USD_SPOTINDEX:{CODE}@USD_SPOTForex:
EURUSD, EUR/USD β FOREX:EURUSD@USD_SPOTUSDJPY β FOREX:USDJPY@USD_SPOTUSDCNH, 离岸人ζ°εΈ β FOREX:USDCNH@USD_SPOTXAUUSD, Gold β FOREX:XAUUSD@USD_SPOTFOREX:{PAIR}@USD_SPOTStep 2: Call the API
curl -s "https://finance.juglans.ai/api/v1/ticker?id={IDENTIFIER}"
For multiple symbols, make separate calls for each.
Step 3: Format the response
Parse the JSON response and present it clearly:
π AAPL (Apple Inc.)
Price: $251.48
Change: +$3.21 (+1.29%)
Volume: 45.2M
Market Cap: $3.82T
Source: Juglans Finance (real-time)
If the API returns an error (ticker not found), tell the user the symbol may be incorrect and suggest alternatives.
API Reference
Base URL: https://finance.juglans.ai/api/v1
| Endpoint | Description |
|----------|-------------|
| GET /ticker?id={identifier} | Single asset price |
| GET /snapshot?assetClass={class} | All prices for an asset class |
| GET /health | Service health check |
Asset classes for snapshot: CRYPTO, US_STOCK, HK_STOCK, CN_STOCK, INDEX, ETF, FOREX, COMMODITY
Response fields:
lastPrice β Current pricepriceChange β Absolute change from previous closepriceChangePercent β Percentage change (decimal, e.g., 0.0129 = +1.29%)volume β Trading volumeturnover β Trading turnover (price Γ volume)marketCap β Market capitalization (if available)name β Asset name (if available)symbol β Exchange symbol