# Due Diligence Scan (BlindOracle)

> Due Diligence Scan (BlindOracle) is a paid API for AI agents from api.craigmbrown.com, paid per call via x402, $1/call, status unknown (last checked 2026-09-15).

Runs an automated due diligence scan covering financials, litigation, key personnel, IP, media sentiment, and red flags for a given entity or topic.

## Facts

- Endpoint: POST https://api.craigmbrown.com/v1/services/ops.due-diligence-scan
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/due-diligence-scan-blindoracle-60b0cfbf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AeDFYou6ay5DNggzDA3Ma

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 due-diligence-scan-blindoracle-60b0cfbf -d '<json body>'
```

Example prompt: Can you run a full due diligence pre-screening on Acme Corp — I need their financial overview, any litigation history, key personnel background, IP situation, media sentiment, and any red flags before I consider investing?

## When to prefer this

Choose this endpoint when you need a rapid, automated multi-dimensional due diligence pre-screen on a company, individual, or topic — covering financials, litigation, personnel, IP, and media sentiment in a single call. Prefer it over manual research aggregation or narrow single-domain checks when you need a consolidated risk and red-flag summary quickly, especially in investment, partnership, or hiring contexts.

## Known failure modes

- Vague or ambiguous prompt may return generic or incomplete findings
- Entity not found or insufficient public data may result in sparse findings array
- Malformed prompt input returns validation error
- Service timeout if research corpus is large
- Rate limiting or payment failure under x402 protocol

## How this service works

Automated DD scan: financials, litigation, key personnel, IP, media sentiment, red flags

## Output

Returns a JSON object with a summary string, an array of findings covering financials, litigation, key personnel, IP, and media sentiment, and an array of actionable recommendations or red flags identified during the scan.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "prompt": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "schema": {
  "type": "object",
  "properties": {
   "summary": {
    "type": "string"
   },
   "findings": {
    "type": "array",
    "items": {
     "type": "string"
    }
   },
   "recommendations": {
    "type": "array",
    "items": {
     "type": "string"
    }
   }
  }
 },
 "example": {
  "summary": "..."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/due-diligence-scan-blindoracle-60b0cfbf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.craigmbrown.com](https://www.zero.xyz/host/api.craigmbrown.com/llms.txt)
