v1

latestOpenAPI 3.0.32026-08-04850206.9 KB
Indicators

Indicator snapshot

The multi-indicator snapshot — every indicator category's latest state (bullish/bearish/sheepish…), score and raw data, in one payload. Ideal for a dashboard at-a-glance read; use the dedicated per-indicator endpoints below for full daily history.

get/api/v1/coins/{slug}/indicators

Response

Example response

{
  "data": [
    {
      "indicator": "OBV",
      "state": "bearish",
      "score": -1,
      "data": {
        "value": 1755907904411,
        "window": 21
      }
    },
    {
      "indicator": "macd",
      "state": "bullish",
      "score": 1,
      "data": {
        "value": -2811.87686067,
        "signal": -3364.35539147,
        "histogram": 552.4785308
      }
    }
  ],
  "meta": {
    "coin": "bitcoin"
  }
}