# DefiTheOdds (/docs/nodes/data/defi-the-odds)

Enriched OHLCV with 40+ indicators and ML market regime scores via DefiTheOdds.



DefiTheOdds provides enriched candle data for crypto assets - OHLCV augmented with 40+ technical indicators and ML-driven market regime scores. The node supports hourly and daily timeframes.

Prerequisites [#prerequisites]

* DefiTheOdds API key - [free tier available](https://defitheodds.xyz/#pricing)
* Add as a credential in [Credentials](/docs/credentials/adding)

Operations [#operations]

| Operation | Description            | Key inputs      |
| --------- | ---------------------- | --------------- |
| getHourly | Get hourly candle data | ticker, candles |
| getDaily  | Get daily candle data  | ticker, candles |

Configuration [#configuration]

| Field   | Type   | Required | Description                                                   |
| ------- | ------ | -------- | ------------------------------------------------------------- |
| ticker  | string | Yes      | Asset ticker (e.g., `SOL`, `BTC`)                             |
| candles | number | No       | Number of candles to return (default: varies, capped at 1000) |

Output [#output]

```json
{
  "success": true,
  "operation": "getHourly",
  "ticker": "SOL",
  "data": [
    { "timestamp": 1712000000, "open": 149.5, "high": 151.2, "low": 148.8, "close": 150.3 }
  ]
}
```

Common use cases [#common-use-cases]

* Feed candle data into AI nodes for technical analysis
* Compare DefiTheOdds signals with Birdeye/CoinGecko prices
* Build alerts on candle patterns

Next steps [#next-steps]

* [Birdeye](/docs/nodes/data/birdeye) - token price analytics
* [OpenRouter](/docs/nodes/ai/openrouter) - AI-powered analysis
