Skip to content
Eden Engine

Crypto News Search (by Keyword)

omnial/search-news

Given a search keyword (a coin, project, or topic), returns matching crypto news articles: title, summary, source outlet, publish time, an associated project name when the article is about one, and highlighted excerpts showing where the keyword matched. Supports pagination via limit/offset.

activeper callv1
Provider
Web & Business Data Network
Category
news-search
Provider price
$0.00819 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": [
    "q"
  ],
  "properties": {
    "q": {
      "type": "string",
      "maxLength": 100,
      "minLength": 2,
      "description": "Search keyword or phrase. Example: bitcoin ETF."
    },
    "limit": {
      "type": "integer",
      "default": 10,
      "maximum": 100,
      "minimum": 1,
      "description": "Results per page. Example: 10. Defaults to 10."
    },
    "offset": {
      "type": "integer",
      "default": 0,
      "maximum": 9007199254740991,
      "minimum": 0,
      "description": "Pagination offset. Example: 0. Defaults to 0."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "required": [
    "data",
    "meta"
  ],
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Opaque article identifier."
          },
          "title": {
            "type": "string"
          },
          "source": {
            "type": "string",
            "description": "The publishing outlet, e.g. 'PANEWS'."
          },
          "summary": {
            "type": "string"
          },
          "highlights": {
            "type": "object",
            "properties": {
              "title": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              },
              "content": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              },
              "summary": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            },
            "description": "Snippets from the article with the matched keyword wrapped in <em> tags. Not every sub-field is present on every article (observed: some articles have no `summary` highlight).",
            "additionalProperties": true
          },
          "project_name": {
            "type": "string",
            "description": "The crypto project or token the article is primarily about (e.g. 'Bitcoin ETF'), when the article names one -- always present on every article observed so far."
          },
          "published_at": {
            "type": "number",
            "description": "Unix seconds."
          }
        },
        "additionalProperties": true
      },
      "description": "Matching articles, most relevant/recent first on the one populated fixture observed. Empty array when nothing matches (observed on a nonsense keyword)."
    },
    "meta": {
      "type": "object",
      "properties": {
        "limit": {
          "type": "number"
        },
        "total": {
          "type": "number",
          "description": "Total matching articles across all pages, not just this page's count."
        },
        "cached": {
          "type": "boolean"
        },
        "offset": {
          "type": "number"
        }
      },
      "additionalProperties": true
    }
  },
  "description": "A page of crypto news articles matching the search keyword.",
  "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.00819
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