Skip to content
Eden Engine

Crypto Project Search (by Name or Ticker)

omnial/search-project

Given a search keyword (a project name or ticker like 'bitcoin' or 'ETH'), returns matching crypto projects with each one's name, ticker, description, category tags, the blockchains it's deployed on, and any on-chain token listings tied to it.

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",
  "required": [
    "q"
  ],
  "properties": {
    "q": {
      "type": "string",
      "maxLength": 100,
      "minLength": 2,
      "description": "Search keyword — project name or ticker like uniswap, bitcoin, or ETH. Example: bitcoin."
    },
    "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",
        "required": [
          "id",
          "name",
          "slug"
        ],
        "properties": {
          "id": {
            "type": "string",
            "description": "The project's internal id. Present on every result observed."
          },
          "name": {
            "type": "string"
          },
          "slug": {
            "type": "string"
          },
          "tags": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Category tags. Not present on every result observed."
          },
          "chains": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Blockchains the project is deployed on. Not present on every result observed."
          },
          "symbol": {
            "type": "string",
            "description": "Ticker, when the project has one. Not present on every result observed."
          },
          "tokens": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "id",
                "name",
                "symbol"
              ],
              "properties": {
                "id": {
                  "type": "string"
                },
                "name": {
                  "type": "string"
                },
                "image": {
                  "type": "null",
                  "description": "Always null when present. This leaf is stripped by responseShaping (it held a direct image URL); not every token carries the key at all."
                },
                "symbol": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "description": "On-chain token listings tied to the project. Not present on every result observed."
          },
          "logo_url": {
            "type": "null",
            "description": "Always null when present. This leaf is stripped by responseShaping (it held a direct image URL); not every result carries the key at all."
          },
          "description": {
            "type": "string",
            "description": "Not present on every result observed (e.g. a project with no writeup on file)."
          }
        },
        "additionalProperties": false
      },
      "description": "Matching projects. Observed empty (zero entries) for a keyword with no match -- see the zzzqxnonexistent99 fixture -- and with up to 20 entries (of a larger `meta.total`) for a common keyword."
    },
    "meta": {
      "type": "object",
      "required": [
        "total",
        "limit",
        "offset",
        "cached"
      ],
      "properties": {
        "limit": {
          "type": "number"
        },
        "total": {
          "type": "number",
          "description": "Total matches across all pages, not just this page's `data` length."
        },
        "cached": {
          "type": "boolean"
        },
        "offset": {
          "type": "number"
        }
      },
      "additionalProperties": false
    },
    "$schema": {
      "type": "null",
      "description": "Always null. This leaf is stripped by responseShaping (it held a URL to the aggregator's internal schema file), so the key is present but its value is always null."
    }
  },
  "description": "Search results for crypto projects matching the query, at the result path.",
  "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