Skip to content
Eden Engine

Historical Token Price Lookup at a Single Timestamp

omnial/coins-prices-historical-timestamp-coins

Given one or more tokens, each identified as chain:address (e.g. avax:0x...) or coingecko:id (e.g. coingecko:ethereum), and a single Unix timestamp shared by all of them, returns the closest known historical price, the token's symbol, and a confidence score for each recognized token. A token identifier the endpoint doesn't recognize is left out of the result entirely rather than causing an error.

activeper callv1
Provider
Web & Business Data Network
Category
token-prices
Provider price
$0.00 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": [
    "coins",
    "timestamp"
  ],
  "properties": {
    "coins": {
      "type": "string",
      "description": "Comma-separated set of tokens as {chain}:{address} or coingecko:{id}, e.g. 'coingecko:ethereum,avax:0x...'."
    },
    "timestamp": {
      "type": "number",
      "description": "Unix timestamp (seconds) of the time to look up historical prices for."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "required": [
    "coins"
  ],
  "properties": {
    "coins": {
      "type": "object",
      "description": "Keyed by the same coin identifiers passed in the `coins` input (e.g. 'coingecko:ethereum', 'avax:0x...'). A coin identifier the endpoint didn't recognize is simply absent from this object -- observed as `coins: {}` (empty) when the single requested identifier was unrecognized, not an error and not a null entry.",
      "additionalProperties": {
        "type": "object",
        "properties": {
          "price": {
            "type": "number",
            "description": "USD price at `timestamp`."
          },
          "symbol": {
            "type": "string",
            "description": "The token's ticker symbol, e.g. 'ETH'."
          },
          "timestamp": {
            "type": "number",
            "description": "Unix seconds of the actual matched price point -- observed a couple of minutes off from the requested timestamp, since this is the closest known price point, not necessarily an exact match."
          },
          "confidence": {
            "type": "number",
            "description": "0-1 confidence score for the match; observed as 0.99 on the found fixture."
          }
        },
        "description": "One recognized coin's historical price data at the requested timestamp.",
        "additionalProperties": true
      }
    }
  },
  "description": "The coins result, keyed by the caller's own requested coin identifiers.",
  "additionalProperties": true
}

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.00
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