Latest Metrics — All Symbols

Returns the most recent computed metrics snapshot for every active asset (or every tracked FX pair when ?type=fx), keyed by symbol. Useful for populating dashboards or score grids without iterating per-symbol.

Request

curl https://api.bytetree.io/api/metrics/latest

# FX-only branch — synthesised from rate data
curl "https://api.bytetree.io/api/metrics/latest?type=fx"

# Include inactive assets (default is active only; ignored on the FX branch)
curl "https://api.bytetree.io/api/metrics/latest?status=inactive"

Query Parameters

NameTypeRequiredDescription
typestringNofx to return the FX synthesis branch (rate-data-derived metrics for every tracked pair). Omit for the default Asset-collection branch.
statusstringNoAsset status filter for the default branch: active (default), pending, or inactive. Ignored on the type=fx branch since FX pairs aren’t issuer-domiciled assets.

Response

Note: unlike most list endpoints on this API, data is a plain object keyed by symbol, not an array. This is the single-shot dashboard shape — direct data[symbol] access is intentional.

FieldTypeDescription
countnumberNumber of symbols included
dataobjectMap of symbol → latest metric record

Each value in data contains date, close, and all computed metric fields at the top level. See Latest Metrics for full field descriptions.

{
  "count": 34,
  "data": {
    "EURUSD": {
      "date": "2026-05-05T00:00:00.000Z",
      "close": 1.16838,
      "byteTrendCapr200w": 4,
      "trendRegimeCapr200w": "Emerging Trend",
      "changeCapr200w": 1
    },
    "GBPUSD": {
      "date": "2026-05-05T00:00:00.000Z",
      "close": 1.34120,
      "byteTrendCapr200w": 3,
      "trendRegimeCapr200w": "Neutral",
      "changeCapr200w": 0
    }
  }
}

Notes