# Crucible Research Dataset Search

> Crucible Research Dataset Search is a paid API for AI agents from crucible.unitynodes.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Searches a curated dataset to return cited, evidence-backed research results with confidence scores and risk assessments

## Facts

- Endpoint: POST https://crucible.unitynodes.com/research/dataset
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crucible-research-dataset-search-3287fef6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KgdLMvHF8eoxm7bG2ZgjP

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 crucible-research-dataset-search-3287fef6 -d '<json body>'
```

Example prompt: Search the Crucible research dataset for information about Uniswap v3 liquidity concentration risks and return up to 10 cited results with confidence scores.

## When to prefer this

Choose this endpoint when you need citeable, source-verified research results from a curated Web3-focused dataset — especially when confidence scores, content hashes, and evidence traceability are required. Prefer this over generic web search when verifiability and risk scoring of research outputs matter, or when operating in a blockchain/DeFi context that demands auditable sourcing.

## Known failure modes

- Missing required 'query' field returns a validation error
- Query with no matching dataset entries returns empty results array
- Exceeding rate limits or payment failure returns 402 Payment Required
- Malformed limit parameter (e.g. non-numeric) returns a 400 error
- Dataset unavailability returns a 503 Service Unavailable

## How this service works

Pay-per-call Web3 agent services: wallet, token and agent security audits; token prices, depeg checks and portfolio valuation; cited fact-checking and source research.

## Output

Returns an array of search results (title, URL, snippet), an array of verifiable sources with URLs and content hashes, evidence objects linking claims to source indices, an overall risk score, a confidence score, and a content hash for the response — all tied to the original query.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "limit": {
   "type": "number",
   "description": "Max results to return"
  },
  "query": {
   "type": "string",
   "description": "Search query"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "cost": {
   "type": "number"
  },
  "data": {
   "type": "object",
   "properties": {
    "query": {
     "type": "string"
    },
    "results": {
     "type": "array",
     "items": {
      "type": "object",
      "properties": {
       "url": {
        "type": "string"
       },
       "title": {
        "type": "string"
       },
       "snippet": {
        "type": "string"
       }
      }
     }
    }
   }
  },
  "sources": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "url": {
      "type": "string"
     },
     "hash": {
      "type": "string"
     },
     "name": {
      "type": "string"
     }
    }
   }
  },
  "evidence": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "claim": {
      "type": "string"
     },
     "support": {
      "type": "string"
     },
     "sourceIndex": {
      "type": "number"
     }
    }
   }
  },
  "riskScore": {
   "type": "number"
  },
  "confidence": {
   "type": "number"
  },
  "contentHash": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crucible-research-dataset-search-3287fef6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from crucible.unitynodes.com](https://www.zero.xyz/host/crucible.unitynodes.com/llms.txt)
