Skip to content
Eden Engine

Crypto Airdrop Activity List (Status, Reward Type & xScore)

omnial/search-airdrop-activities

Returns a paginated list of tracked crypto airdrop activities -- each entry's coin name (and symbol when the record has one), status (e.g. confirmed or potential), reward type (airdrop, points, or whitelist), an xScore where reported, total raise amount, and created/updated timestamps -- plus the total count available, so you can page through results with limit and offset.

activeper callv1
Provider
Web & Business Data Network
Category
onchain-data
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",
  "properties": {
    "limit": {
      "type": "integer",
      "maximum": 100,
      "minimum": 1,
      "description": "Results per page. Must be passed explicitly if offset is omitted."
    },
    "offset": {
      "type": "integer",
      "maximum": 9007199254740991,
      "minimum": 0,
      "description": "Pagination offset. Must be passed explicitly if limit is omitted."
    }
  },
  "minProperties": 1,
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "required": [
    "data",
    "meta"
  ],
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "id",
          "coin_name",
          "status",
          "reward",
          "reward_type",
          "total_raise",
          "created_at",
          "updated_at"
        ],
        "properties": {
          "id": {
            "type": "string",
            "description": "The activity record's own identifier (a UUID). Not a person's id."
          },
          "reward": {
            "type": "string",
            "description": "Reward kind, e.g. 'airdrop', 'points', 'whitelist'."
          },
          "status": {
            "type": "string",
            "description": "Activity status. Only 'CONFIRMED' and 'POTENTIAL' were observed across both fixtures; other values are plausible but unconfirmed from two fixtures."
          },
          "xscore": {
            "type": "string",
            "description": "A numeric score reported as a string, e.g. '475'. Missing entirely on several records in both fixtures -- not every activity has one; check for its presence before relying on it."
          },
          "coin_name": {
            "type": "string",
            "description": "The token or project's name, e.g. 'Ekiden', 'eCash.com'."
          },
          "created_at": {
            "type": "integer",
            "description": "Unix timestamp. Observed as `0` on every single record across both fixtures; whether this ever holds a real timestamp is unconfirmed from two fixtures."
          },
          "updated_at": {
            "type": "integer",
            "description": "Unix timestamp. Observed as `0` on every record, same as created_at."
          },
          "coin_symbol": {
            "type": "string",
            "description": "Ticker symbol, e.g. 'ECX'. Present only on some entries observed (several records in the default-page fixture had none; all three records in the small-page fixture had none) -- do not assume every entry has one."
          },
          "reward_type": {
            "type": "string",
            "description": "Observed identical to `reward` on every record in both fixtures -- kept as a separate field since nothing in two fixtures confirms the two always agree."
          },
          "total_raise": {
            "type": "integer",
            "description": "Total raise amount. `0` is common and appears to mean no raise reported for that activity, not a rounding artifact."
          }
        },
        "additionalProperties": false
      },
      "description": "One entry per airdrop activity, up to `meta.limit` entries per call."
    },
    "meta": {
      "type": "object",
      "required": [
        "total",
        "limit",
        "offset",
        "cached"
      ],
      "properties": {
        "limit": {
          "type": "integer",
          "description": "Echoes the requested (or defaulted) limit."
        },
        "total": {
          "type": "integer",
          "description": "Total activities available for this 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 airdrop-activity page, 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 23, 2026