# KAMIYO Security Intelligence - Latest Exploit Alert

> KAMIYO Security Intelligence - Latest Exploit Alert is a paid API for AI agents from api.kamiyo.ai, paid per call via x402, $0.01/call, status down (last checked 2026-09-15).

Returns the latest exploit alert with AI-powered risk scoring, affected protocols, and recommended action for a configurable time window

## Facts

- Endpoint: GET https://api.kamiyo.ai/.well-known/x402
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kamiyo-security-intelligence-latest-exploit-alert-8f05eadb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DR5ou1Rv2MyDwX7DQx7Y4

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 kamiyo-security-intelligence-latest-exploit-alert-8f05eadb
```

Example prompt: Check KAMIYO for the latest exploit alerts in the past 4 hours and tell me the risk score, which protocols are affected, and what action I should take.

## When to prefer this

Use this endpoint when an AI agent needs real-time, AI-assessed exploit intelligence for blockchain/DeFi protocols — particularly when you need a risk score plus a concrete recommended action, not just raw threat data. Prefer this over generic security feeds when operating in Web3 or DeFi contexts and need a structured, agent-friendly security signal with severity classification.

## Known failure modes

- Invalid hours parameter (outside 1-24 range) returns validation error
- No exploits found within the time window returns alert_status: none
- Payment failure or insufficient USDC balance blocks the request
- Upstream threat intelligence feed unavailable causes service error
- Rate limiting if called too frequently

## How this service works

Get latest exploit alert with AI-powered risk assessment

## Output

Returns a structured object containing the latest exploit details, a numerical risk score from 0-100, an alert status enum (critical/high/medium/low/none), an array of affected protocols, and an AI-generated recommended action string.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "hours": {
   "type": "integer",
   "description": "Time window in hours (1-24, default: 1)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "exploit": {
  "type": "object",
  "description": "Latest exploit details"
 },
 "risk_score": {
  "type": "number",
  "description": "Risk assessment score (0-100)"
 },
 "alert_status": {
  "enum": [
   "critical",
   "high",
   "medium",
   "low",
   "none"
  ],
  "type": "string",
  "description": "Current alert status"
 },
 "affected_protocols": {
  "type": "array",
  "description": "List of affected protocols"
 },
 "recommended_action": {
  "type": "string",
  "description": "AI-generated recommended action"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kamiyo-security-intelligence-latest-exploit-alert-8f05eadb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.kamiyo.ai](https://www.zero.xyz/host/api.kamiyo.ai/llms.txt)
