Skip to content
Eden Engine

Crypto Project Public Sale Lookup (ICO/IDO/IEO)

omnial/market-public-sale

Given a crypto project's UUID or its name/symbol, looks up recorded public token sale (ICO/IDO/IEO) information for that project. All three real calibration calls (bitcoin, aptos, and a nonexistent project id) came back with zero matching sale records -- a populated record's shape has not been observed, so an empty result means no public sale is on file (or the lookup didn't match), not that the call failed.

activeper callv1
Provider
Web & Business Data Network
Category
token-prices
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": "Project name or symbol for entity resolution. Example: bitcoin."
    },
    "id": {
      "type": "string",
      "minLength": 1,
      "description": "Project UUID. Example: 25c6612a-395c-4974-94eb-3b5f9f4b2ed7."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": true
      },
      "description": "Matching public-sale records. Empty (`[]`) on all three real calibration calls -- a populated entry's field shape has never been observed and is unconfirmed."
    },
    "meta": {
      "type": "object",
      "properties": {
        "limit": {
          "type": "number",
          "description": "Page size used. 0 on every real call observed."
        },
        "total": {
          "type": "number",
          "description": "Total matching records. 0 on every real call observed."
        },
        "cached": {
          "type": "boolean",
          "description": "Whether the result was served from cache. false on every real call observed."
        },
        "offset": {
          "type": "number",
          "description": "Page offset used. 0 on every real call observed."
        }
      },
      "description": "Pagination/result metadata. Observed as {total:0, limit:0, offset:0, cached:false} on every real call.",
      "additionalProperties": true
    }
  },
  "description": "The public-sale search result, as returned at routing.responseResultPath ($.output). All three real calibration calls returned zero matches (a well-known token by name, a token with a real public sale by name, and a nonexistent project id) -- an empty `data` array plus a zeroed `meta` is a normal 'no public sale on file / no match' result, not a failure (status stays COMPLETED and the call is still billed).",
  "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.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