TradePortfolio

Charts

Dev

GET /charts


Market dashboard data — a formatted ticker strip of Binance USD perpetuals plus macro market statistics. Returns pre-formatted display strings for price, 24h change, and volume per symbol, alongside aggregate stats for ETH gas, total market OI, 24h volume, and BTC implied volatility. Use it to build a live market ticker bar or dashboard header panel.

Authentication

Requires Dev tier or higher. Free tier does not have access (returns 403).

Parameters

This endpoint takes no parameters.

Example request

bash
curl -H "X-Api-Key: lk_live_your_key_here" \
  https://api.loris.tools/charts

Example response

json
{
  "data": [
    {
      "ticker": "BTC",
      "tv_ticker": "BINANCE:BTCUSDT.P",
      "price": "$71,200",
      "change": "+3.2%",
      "volume": "$12.8B"
    },
    {
      "ticker": "ETH",
      "tv_ticker": "BINANCE:ETHUSDT.P",
      "price": "$3,820",
      "change": "+2.1%",
      "volume": "$5.6B"
    }
  ],
  "market_data": {
    "eth_gas": "18 gwei",
    "open_interest": "$93.2B",
    "volume": "$128.5B",
    "btc_volatility": "68.2%"
  }
}

Errors

  • 403 Free tier does not have access. Upgrade to Dev.

For authentication errors (401) and rate limit responses (429), see Errors.

Related