Catalog/meta-search

Meta

Endpoint search API

Search the catalog with a natural-language query and return endpoints likely to satisfy the requested task, with scores and matched terms.

Price$0.0per request
MethodGET
Route/v1/search
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache60s public
metasearchdiscoverycatalogroutingagents
API URLhttps://x402.hexl.dev/v1/search
Integration docs
Example request
{
  "q": "check if a crypto wallet is risky",
  "limit": 5
}
Example response
{
  "query": "check if a crypto wallet is risky",
  "count": 1,
  "matches": [
    {
      "slug": "chain-address-risk",
      "method": "GET",
      "path": "/v1/chain/address-risk",
      "score": 42,
      "matchedTerms": [
        "wallet",
        "risk"
      ]
    }
  ]
}
Input schema
{
  "type": "object",
  "required": [
    "q"
  ],
  "properties": {
    "q": {
      "type": "string",
      "minLength": 1,
      "maxLength": 500
    },
    "limit": {
      "type": "number",
      "minimum": 1,
      "maximum": 25,
      "default": 10
    }
  }
}
Output schema
{
  "type": "object",
  "required": [
    "query",
    "count",
    "matches"
  ],
  "properties": {
    "query": {
      "type": "string"
    },
    "count": {
      "type": "number"
    },
    "matches": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": true
      }
    }
  }
}