Skip to content
Eden Engine

Crypto Project Profile (Overview, Team, Funding & Contracts)

omnial/project-detail

Given a project's UUID, X (Twitter) handle, numeric X account id, or a fuzzy name search, returns its profile: overview and description, live token price and market data, tokenomics, funding rounds and investors, team members and roles, on-chain contract addresses, official social presence, and whether its token has launched (TGE status). One call can request all of these sub-resources or a narrower subset.

activeper callv1
Provider
Web & Business Data Network
Category
company-enrichment
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": [
        "x_id"
      ]
    },
    {
      "required": [
        "handle"
      ]
    },
    {
      "required": [
        "q"
      ]
    }
  ],
  "properties": {
    "q": {
      "type": "string",
      "minLength": 1,
      "description": "Fuzzy project name search. Use only when a UUID isn't available; may return unexpected results for an ambiguous name. Example: ethereum."
    },
    "id": {
      "type": "string",
      "minLength": 1,
      "description": "Project UUID. Use this when you already have it from a prior lookup. Takes priority over the other lookup fields. Example: 25c6612a-395c-4974-94eb-3b5f9f4b2ed7."
    },
    "x_id": {
      "type": "string",
      "minLength": 1,
      "description": "Numeric X (Twitter) account id. Resolves to the associated project. Example: 984188226826010624."
    },
    "fields": {
      "type": "string",
      "maxLength": 200,
      "minLength": 1,
      "description": "Comma-separated sub-resources to include: overview, token_info, tokenomics, funding, team, contracts, social, tge_status. Example: overview,token_info,funding. Omit to receive every sub-resource."
    },
    "handle": {
      "type": "string",
      "minLength": 1,
      "description": "X (Twitter) handle, without the @. Resolves to the associated project via its X account. Example: uniswap."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "team": {
          "type": "object",
          "properties": {
            "members": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "Present on some members, absent on others."
                  },
                  "name": {
                    "type": "string",
                    "description": "The team member's own name."
                  },
                  "role": {
                    "type": "string"
                  },
                  "image": {
                    "type": "null",
                    "description": "Withheld: a captured URL value, never shipped raw."
                  },
                  "social_links": {
                    "type": "object",
                    "properties": {
                      "blog": {
                        "type": "null",
                        "description": "Withheld: a captured URL value."
                      },
                      "github": {
                        "type": "null",
                        "description": "Withheld: a captured URL value."
                      },
                      "twitter": {
                        "type": "null",
                        "description": "Withheld: a captured URL value."
                      },
                      "linkedin": {
                        "type": "null",
                        "description": "Withheld: a captured URL value."
                      },
                      "farcaster": {
                        "type": "null",
                        "description": "Withheld: a captured URL value."
                      }
                    },
                    "description": "Public professional profile links, each withheld raw.",
                    "additionalProperties": false
                  }
                },
                "additionalProperties": false
              }
            }
          },
          "description": "Only present when 'team' was requested (or 'fields' omitted).",
          "additionalProperties": false
        },
        "social": {
          "type": "object",
          "properties": {
            "github": {
              "type": "object",
              "properties": {
                "url": {
                  "type": "null",
                  "description": "Withheld: a captured URL value."
                }
              },
              "additionalProperties": false
            },
            "discord": {
              "type": "object",
              "properties": {
                "url": {
                  "type": "null",
                  "description": "Withheld: a captured URL value."
                }
              },
              "additionalProperties": false
            },
            "twitter": {
              "type": "object",
              "properties": {
                "handle": {
                  "type": "string",
                  "description": "The project's own public X handle."
                },
                "followers_count": {
                  "type": "integer"
                }
              },
              "additionalProperties": false
            }
          },
          "description": "Only present when 'social' was requested (or 'fields' omitted).",
          "additionalProperties": false
        },
        "funding": {
          "type": "object",
          "properties": {
            "rounds": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "date": {
                    "type": "string",
                    "description": "ISO date, e.g. '2022-10-13'."
                  },
                  "amount": {
                    "type": "number",
                    "description": "Observed on some rounds but absent from others (e.g. the 'Strategic' round on uniswap-found.json carries no amount)."
                  },
                  "investors": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string"
                        },
                        "logo": {
                          "type": "null",
                          "description": "Withheld: a captured URL value, never shipped raw."
                        },
                        "name": {
                          "type": "string",
                          "description": "The investing fund or firm's own name."
                        },
                        "type": {
                          "type": "string",
                          "description": "Observed 'FUND' on every entry."
                        },
                        "is_lead": {
                          "type": "boolean"
                        }
                      },
                      "additionalProperties": false
                    }
                  },
                  "valuation": {
                    "type": "number",
                    "description": "Observed on only one of three rounds captured."
                  },
                  "round_name": {
                    "type": "string",
                    "description": "The round's own label, e.g. 'Series B', 'Strategic'."
                  }
                },
                "additionalProperties": false
              }
            },
            "total_raise": {
              "type": "number"
            }
          },
          "description": "Only present when 'funding' was requested (or 'fields' omitted).",
          "additionalProperties": false
        },
        "overview": {
          "type": "object",
          "properties": {
            "id": {
              "type": "string",
              "description": "The project's UUID."
            },
            "name": {
              "type": "string",
              "description": "The project's own name, e.g. 'Uniswap'."
            },
            "slug": {
              "type": "string"
            },
            "tags": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "x_id": {
              "type": "string",
              "description": "Numeric X account id."
            },
            "chains": {
              "type": "array",
              "items": {
                "type": "string"
              },
              "description": "Blockchain networks the project is deployed on."
            },
            "website": {
              "type": "null",
              "description": "Withheld: a captured URL value, never shipped raw (see this tool's header comment)."
            },
            "logo_url": {
              "type": "null",
              "description": "Withheld: a captured URL value, never shipped raw."
            },
            "x_handle": {
              "type": "string",
              "description": "The project's own public X handle."
            },
            "exchanges": {
              "type": "array",
              "items": {
                "type": "string"
              },
              "description": "Exchanges the token is listed on."
            },
            "tge_status": {
              "type": "string",
              "description": "Observed as 'post' on both fixtures; other values unconfirmed."
            },
            "description": {
              "type": "string"
            },
            "x_followers": {
              "type": "integer"
            },
            "token_symbol": {
              "type": "string"
            }
          },
          "additionalProperties": false
        },
        "contracts": {
          "type": "object",
          "properties": {
            "contracts": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "chain": {
                    "type": "string"
                  },
                  "label": {
                    "type": "string"
                  },
                  "address": {
                    "type": "string",
                    "description": "The on-chain contract address."
                  }
                },
                "additionalProperties": false
              }
            }
          },
          "description": "Only present when 'contracts' was requested (or 'fields' omitted).",
          "additionalProperties": false
        },
        "tge_status": {
          "type": "object",
          "properties": {
            "exchanges": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "current_status": {
              "type": "string",
              "description": "Observed 'post' on both fixtures."
            },
            "last_event_time": {
              "type": "integer",
              "description": "Unix seconds."
            }
          },
          "description": "Only present when 'tge_status' was requested (or 'fields' omitted).",
          "additionalProperties": false
        },
        "token_info": {
          "type": "object",
          "properties": {
            "fdv": {
              "type": "number"
            },
            "name": {
              "type": "string",
              "description": "The token's own name, e.g. 'Uniswap'."
            },
            "image": {
              "type": "null",
              "description": "Withheld: a captured URL value, never shipped raw."
            },
            "symbol": {
              "type": "string"
            },
            "low_24h": {
              "type": "number"
            },
            "high_24h": {
              "type": "number"
            },
            "price_usd": {
              "type": "number"
            },
            "volume_24h": {
              "type": "number"
            },
            "all_time_low": {
              "type": "number"
            },
            "total_supply": {
              "type": "number"
            },
            "all_time_high": {
              "type": "number"
            },
            "market_cap_usd": {
              "type": "number"
            },
            "price_change_7d": {
              "type": "number",
              "description": "Percent."
            },
            "price_change_24h": {
              "type": "number",
              "description": "Percent."
            },
            "price_change_30d": {
              "type": "number",
              "description": "Percent."
            },
            "all_time_low_date": {
              "type": "integer",
              "description": "Unix seconds."
            },
            "all_time_high_date": {
              "type": "integer",
              "description": "Unix seconds."
            },
            "circulating_supply": {
              "type": "number"
            }
          },
          "additionalProperties": false
        },
        "tokenomics": {
          "type": "object",
          "properties": {
            "fdv": {
              "type": "number"
            },
            "total_supply": {
              "type": "number"
            },
            "market_cap_usd": {
              "type": "number"
            },
            "circulating_supply": {
              "type": "number"
            }
          },
          "description": "Only present when 'tokenomics' was requested (or 'fields' omitted).",
          "additionalProperties": false
        }
      },
      "description": "Only the sub-resources named in the request's `fields` (or all of them, if `fields` was omitted) are present -- confirmed against handle-lookup.json, which requested only overview,token_info and carries no funding/team/contracts/social/tge_status/tokenomics key at all, not merely empty ones.",
      "additionalProperties": false
    },
    "meta": {
      "type": "object",
      "properties": {
        "cached": {
          "type": "boolean",
          "description": "Whether this response was served from cache."
        }
      },
      "additionalProperties": false
    }
  },
  "description": "The project profile, 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 15, 2026