Skip to content
Eden Engine

Crypto Project Event Search (by Name or Project ID)

omnial/search-events

Given a project name or project UUID, searches that project's events -- launches, upgrades, partnerships, news, airdrops, listings, or Twitter activity -- optionally filtered to one event type, with limit/offset pagination. Each result gives the event type, headline, date, and a short description.

activeper callv1
Provider
Web & Business Data Network
Category
company-enrichment
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",
  "anyOf": [
    {
      "required": [
        "id"
      ]
    },
    {
      "required": [
        "q"
      ]
    }
  ],
  "properties": {
    "q": {
      "type": "string",
      "maxLength": 100,
      "minLength": 2,
      "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 /fund/portfolio or id from /search/project). Takes priority over q. Example: 25c6612a-395c-4974-94eb-3b5f9f4b2ed7."
    },
    "type": {
      "enum": [
        "launch",
        "upgrade",
        "partnership",
        "news",
        "airdrop",
        "listing",
        "twitter"
      ],
      "type": "string",
      "description": "Filter by event type. Can be launch, upgrade, partnership, news, airdrop, listing, or twitter. Example: launch."
    },
    "limit": {
      "type": "integer",
      "default": 20,
      "maximum": 100,
      "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",
        "properties": {
          "date": {
            "type": "string",
            "description": "Calendar date the event was recorded, 'YYYY-MM-DD'."
          },
          "type": {
            "type": "string",
            "description": "One of the input's event-type enum values, e.g. 'news', 'launch'."
          },
          "title": {
            "type": "string",
            "description": "A one-line event headline."
          },
          "description": {
            "type": "string",
            "description": "A short prose summary of the event, one to a few sentences."
          }
        },
        "additionalProperties": false
      },
      "description": "One entry per matching event, newest-relevant first. Empty when no event matches the search/filter (observed on ethereum-launch-events.json: 'ethereum' had zero events of type 'launch')."
    },
    "meta": {
      "type": "object",
      "properties": {
        "limit": {
          "type": "integer",
          "description": "Echoes the requested (or default) limit."
        },
        "total": {
          "type": "integer",
          "description": "Total matching events across all pages."
        },
        "cached": {
          "type": "boolean",
          "description": "Whether this response was served from the provider's cache."
        },
        "offset": {
          "type": "integer",
          "description": "Echoes the requested (or default) offset."
        }
      },
      "description": "Pagination info for this search.",
      "additionalProperties": false
    }
  },
  "description": "The event search 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.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 15, 2026