# Knight Logics Opportunity Risk Scorer

> Knight Logics Opportunity Risk Scorer is a paid API for AI agents from agent.tryknightlogics.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Scores an opportunity or deal for risk using AI-driven analysis, returning a numeric score, decision recommendation, blockers, and reasoning.

## Facts

- Endpoint: POST https://agent.tryknightlogics.com/api/opportunity-risk
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/knight-logics-opportunity-risk-scorer-089128cd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZaOUEjLTh9E8sNLSyUCZb

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 knight-logics-opportunity-risk-scorer-089128cd -d '<json body>'
```

Example prompt: Can you score the risk on this opportunity — it's a public repo project with a reproducible scope and no known blockers — and tell me whether we should consider, pursue, or pass on it?

## When to prefer this

Choose this endpoint when you need a fast, structured risk score and decision recommendation for a business opportunity or deal, especially within an automated sales pipeline or CRM workflow. It is particularly useful when you want a machine-readable 'consider/pursue/pass' signal alongside human-readable reasons and blockers, rather than a generic free-text analysis.

## Known failure modes

- Missing or malformed opportunity input body returns a 400 error
- Insufficient data to score the opportunity may yield low-confidence or null score
- Service unavailability or payment failure returns a 402 or 5xx error
- Ambiguous or empty scope data may produce generic reasons with no specific blockers

## How this service works

Public website contact extractor for CRM enrichment: emails, phones, forms, socials, DNS mail-policy. Also on Apify ($0.005/site) and RapidAPI (BASIC free).

## Output

Returns a JSON object containing a numeric risk score (0-100), an array of reasons explaining the score, a list of blockers (if any), a decision string (e.g. 'consider', 'pursue', or 'pass'), and a generated_at timestamp.

## 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": [
      "title",
      "description",
      "reward_usd",
      "source_url"
     ],
     "properties": {
      "title": {
       "type": "string",
       "maxLength": 500
      },
      "reward_usd": {
       "type": "number",
       "minimum": 0
      },
      "source_url": {
       "type": "string",
       "format": "uri"
      },
      "competitors": {
       "type": "integer",
       "minimum": 0
      },
      "description": {
       "type": "string",
       "maxLength": 20000
      }
     },
     "additionalProperties": true
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "decision",
      "score",
      "reasons",
      "blockers"
     ],
     "properties": {
      "score": {
       "type": "integer"
      },
      "reasons": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "blockers": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "decision": {
       "enum": [
        "consider",
        "review",
        "reject"
       ],
       "type": "string"
      },
      "generated_at": {
       "type": "string",
       "format": "date-time"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "score": 85,
  "reasons": [
   "Public repository and reproducible scope"
  ],
  "blockers": [],
  "decision": "consider",
  "generated_at": "2026-01-01T00:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/knight-logics-opportunity-risk-scorer-089128cd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent.tryknightlogics.com](https://www.zero.xyz/host/agent.tryknightlogics.com/llms.txt)
