# SYNTHORA DeFi Security Incidents Oracle

> SYNTHORA DeFi Security Incidents Oracle is a paid API for AI agents from defi-hacks.hergertsynthora.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Retrieves real-time and historical DeFi hacks, exploits, and rug pulls for a given protocol via DeFiLlama's hacks data, enabling pre-deposit risk assessment.

## Facts

- Endpoint: POST https://defi-hacks.hergertsynthora.com/service
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/synthora-defi-security-incidents-oracle-a0dfd5f7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oWCO6HhQyvxlNXiUUEy-k

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 synthora-defi-security-incidents-oracle-a0dfd5f7 -d '<json body>'
```

Example prompt: Before I deposit into Curve Finance, can you pull the DeFi security incident history for 'curve' going back 365 days so I can see if it's been hacked or exploited?

## When to prefer this

Choose this endpoint when you need structured DeFi-specific security incident data (hacks, exploits, rugs) sourced from DeFiLlama's curated dataset, particularly for pre-deposit due diligence or protocol risk scoring. Prefer it over generic web search when you need structured, machine-readable incident records rather than news articles.

## Known failure modes

- Unknown or misspelled protocol name returns empty result set
- days_back value of 0 or negative may return no results
- DeFiLlama upstream API unavailability causes fetch failure
- Protocol with no recorded incidents returns empty result (not an error)
- Very long days_back values may be capped or slow to respond

## How this service works

Real-time and historical DeFi hacks, exploits, rugs via DeFiLlama hacks API. Risk signal before depositing. First 3 calls FREE per wallet — send header X-WALLET: 0x<addr>. No charge on upstream failure.

## Output

A JSON object with an 'ok' boolean and a 'result' field containing incident records for the queried protocol, including details on hacks, exploits, and rug pulls sourced from DeFiLlama's hacks dataset for the specified lookback window.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "protocol": {
   "type": "string",
   "description": "protocol"
  },
  "days_back": {
   "type": "integer",
   "description": "days_back"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "niche": "defi-hacks",
  "result": {}
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/synthora-defi-security-incidents-oracle-a0dfd5f7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from defi-hacks.hergertsynthora.com](https://www.zero.xyz/host/defi-hacks.hergertsynthora.com/llms.txt)
