Skip to content
Eden Engine

Bitcoin Fear & Greed Index History

omnial/market-fear-greed

Given a start and end date, returns the daily Bitcoin Fear & Greed Index for that window -- a 0-100 sentiment score, a classification label (e.g. Extreme Fear, Fear, Neutral, Greed), the BTC price on that day, and the day's timestamp -- one entry per day the index has data for, empty if none does.

activeper callv1
Provider
Web & Business Data Network
Category
crypto-signals
Provider price
$0.01638 per call
Latency p50 / p95
— / —
Success rate
—
Verified
—

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "from",
    "to"
  ],
  "properties": {
    "to": {
      "type": "string",
      "minLength": 1,
      "description": "End of time range. Accepts Unix seconds or date string (YYYY-MM-DD). Example: 2026-03-01."
    },
    "from": {
      "type": "string",
      "minLength": 1,
      "description": "Start of time range. Accepts Unix seconds or date string (YYYY-MM-DD). Example: 2026-01-01."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "price": {
            "type": "number",
            "description": "BTC price on that day."
          },
          "value": {
            "type": "integer",
            "description": "Sentiment score from 0 (extreme fear) to 100 (extreme greed)."
          },
          "timestamp": {
            "type": "integer",
            "description": "Unix seconds for that day's reading."
          },
          "classification": {
            "type": "string",
            "description": "Label for the score. Observed values: Extreme Fear, Fear, Neutral, Greed."
          }
        },
        "additionalProperties": false
      },
      "description": "One entry per day the index has data for, most recent first on the populated fixture. Empty on a date range the index has not yet published data for (observed on a future-dated request), which is still billed as a normal call."
    },
    "meta": {
      "type": "object",
      "properties": {
        "cached": {
          "type": "boolean",
          "description": "Whether this response was served from the provider's cache."
        }
      },
      "additionalProperties": false
    }
  },
  "description": "The fear & greed history response, as returned at routing.responseResultPath ($.output).",
  "additionalProperties": false
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.01638
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 23, 2026