# Heurist Mesh – Semantic Search Crypto Projects

> Heurist Mesh – Semantic Search Crypto Projects is a paid API for AI agents from mesh.heurist.xyz, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Search 10k+ indexed crypto projects using natural language with filters for investors, tags, funding years, exchanges, and events

## Facts

- Endpoint: POST https://mesh.heurist.xyz/x402/solana/agents/ProjectKnowledgeAgent/semantic_search_projects
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/heurist-mesh-semantic-search-crypto-projects-796936c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nIhidH2FXJfOLOSzFe2vi

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability heurist-mesh-semantic-search-crypto-projects-796936c2 -d '<json body>'
```

Example prompt: Find me DeFi projects that were funded by Paradigm or a16z in 2024 and are listed on Binance — ideally ones tagged with lending or yield.

## When to prefer this

Use this endpoint when you need to discover or filter across many crypto projects simultaneously using natural language criteria such as investor name, category tags, funding year, exchange listings, or event keywords. Prefer get_project instead when looking up a single known project by exact name, ticker symbol, contract address, or Twitter handle. This endpoint excels at broad discovery across 10k+ projects rather than precise single-entity retrieval.

## Known failure modes

- No matching projects found for highly specific or obscure filter combinations
- New or small projects without VC backing may not be indexed
- Query too vague returns large unfiltered result sets
- Exact single-project lookup by name/symbol/address is better served by the get_project endpoint
- Stale data if a project's exchange listings or funding info changed recently

## How this service works

Search crypto projects using natural language criteria. Supports investor filters, tag/category filters, funding years, event years, exchange listings, and event keywords. You can combine multiple constraints in one query. Example queries: 'DeFi projects funded by Paradigm in 2024', 'AI projects listed on Binance with airdrop events in 2025'. Returns matching projects with relevant fields (name, one_liner, tags, investors, fundraising, events, exchanges). Best for discovery and filtering across 10k+ indexed projects. New or small projects without VC backing might be missing. For single project lookup by exact name/symbol/address/twitter, use get_project instead.

## Output

Returns a list of matching crypto projects, each including the project name, a one-liner description, relevant tags/categories, known investors, fundraising round details, notable events (e.g. airdrops, launches), and exchange listings. Coverage spans 10k+ indexed projects; very new or unfunded projects may be absent.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "query"
     ],
     "properties": {
      "debug": {
       "type": "boolean",
       "default": false,
       "description": "Debug mode flag. ALWAYS use false."
      },
      "limit": {
       "type": "integer",
       "default": 20,
       "maximum": 100,
       "minimum": 1,
       "description": "Maximum number of projects to return"
      },
      "query": {
       "type": "string",
       "description": "Natural language query describing what to find. Include any combination of: investor names like a16z, Paradigm; tags/categories like DeFi, AI, Infra, Layer1, Layer2, zk, NFT, Privacy, Gaming, DePIN, Stablecoin Protocol, DEX, Lending, Derivatives; funded years; event years; exchanges like Binance, Binance Alpha, Coinbase, OKX, Bybit; events like airdrop, mainnet, listing, partnership, exploit/hack, TGE; description of the project business"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "result": {
       "type": "object",
       "additionalProperties": true
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/heurist-mesh-semantic-search-crypto-projects-796936c2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mesh.heurist.xyz](https://www.zero.xyz/host/mesh.heurist.xyz/llms.txt)
