Skip to content
Eden Engine

AI-Generated News & Signal Analysis for a Crypto Project

omnial/project-ai-news

Given a crypto project's name or a previously obtained project id, returns a paginated list of AI-generated news and signal-analysis items about it -- a title, subtitle, a short TLDR bullet list, a signal type (e.g. price analysis or social mindshare), and a timestamp for each item.

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",
  "anyOf": [
    {
      "required": [
        "id"
      ]
    },
    {
      "required": [
        "q"
      ]
    }
  ],
  "properties": {
    "q": {
      "type": "string",
      "minLength": 1,
      "description": "Fuzzy entity name search. Only use when 'id' is not available. May return unexpected results for ambiguous names. Example: ethereum."
    },
    "id": {
      "type": "string",
      "minLength": 1,
      "description": "Project UUID. PREFERRED — always use this when available from a previous response (e.g. project_id from a portfolio lookup or id from a project search). Takes priority over q. Example: 25c6612a-395c-4974-94eb-3b5f9f4b2ed7."
    },
    "lang": {
      "enum": [
        "en",
        "zh",
        "ja",
        "kr"
      ],
      "type": "string",
      "default": "en",
      "description": "Language for AI-generated content. Example: en. Defaults to \"en\"."
    },
    "limit": {
      "type": "integer",
      "default": 20,
      "maximum": 50,
      "minimum": 1,
      "description": "Results per page. Example: 20. Defaults to 20."
    },
    "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",
        "required": [
          "id",
          "slug",
          "title",
          "subtitle",
          "tldr",
          "signal_type",
          "timestamp"
        ],
        "properties": {
          "id": {
            "type": "string",
            "description": "Item UUID."
          },
          "slug": {
            "type": "string"
          },
          "tldr": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Short bullet-point summary of the item, 3-5 sentences observed."
          },
          "title": {
            "type": "string"
          },
          "subtitle": {
            "type": "string"
          },
          "timestamp": {
            "type": "integer",
            "description": "Unix seconds."
          },
          "signal_type": {
            "type": "string",
            "description": "Observed values: \"price_analysis\" and \"bn_mindshare\" (social/mindshare-driven signal) across the fixtures -- other values are plausible but unconfirmed from two fixtures."
          }
        },
        "additionalProperties": false
      },
      "description": "One AI-generated news/signal item per entry, most recent first on the populated fixture. Empty when the requested page is past the true result count (see meta.total)."
    },
    "meta": {
      "type": "object",
      "required": [
        "total",
        "limit",
        "offset",
        "cached"
      ],
      "properties": {
        "limit": {
          "type": "integer",
          "description": "Echoes the requested (or defaulted) limit."
        },
        "total": {
          "type": "integer",
          "description": "Total items available for the query."
        },
        "cached": {
          "type": "boolean",
          "description": "Whether this response was served from the provider's cache."
        },
        "offset": {
          "type": "integer",
          "description": "Echoes the requested (or defaulted) offset."
        }
      },
      "additionalProperties": false
    }
  },
  "description": "The news/signal 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