Naar de inhoud
GET /v1/biggest

Largest exploits of all time by USD stolen

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/cryptohacks-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/cryptohacks-api/v1/biggest" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptohacks-api/v1/biggest", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptohacks-api/v1/biggest");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/cryptohacks-api/v1/biggest",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "count": 32,
        "hacks": [
            {
                "date": "2020-12-28",
                "name": "LuBian",
                "rank": 1,
                "chains": [
                    "Bitcoin"
                ],
                "source": null,
                "technique": "Private Key Compromised (Brute Force)",
                "amount_usd": 3500000000,
                "bridge_hack": false,
                "target_type": "Other",
                "classification": "Infrastructure",
                "returned_funds_usd": null
            },
            {
                "date": "2025-02-21",
                "name": "Bybit",
                "rank": 2,
                "chains": [
                    "Ethereum"
                ],
                "source": null,
                "technique": "Safe Multisig wallet Phishing Exploit",
                "amount_usd": 1400000000,
                "bridge_hack": false,
                "target_type": "CEX",
                "classification": "Protocol Logic",
                "returned_funds_usd": 1400000000
            },
            {
                "date": "2022-03-23",
                "name": "Ronin Bridge",
                "rank": 3,
                "chains": [
                    "Ethereum"
                ],
                "source": null,
                "technique": "Private Key Compromised (Social Engineering)",
                "amount_usd": 624000000,
                "bridge_hack": true,
                "target_type": "DeFi Protocol",
                "classification": "Infrastructure",
                "returned_funds_usd": null
            },
            {
                "date": "2021-08-10",
                "name": "Poly Network",
                "rank": 4,
                "chains": [
                    "Ethereum",
                    "BSC",
                    "Polygon"
                ],
                "source": null,
                "technique": "Access Control Exploit",
                "amount_usd": 611000000,
                "bridge_hack": true,
                "target_type": "DeFi Protocol",
                "classification": "Protocol Logic",
                "returned_funds_usd": null
            },
            {
                "date": "2022-10-06",
                "name": "Binance Bridge",
                "rank": 5,
                "chains": [
                    "BSC"
                ],
                "source": null,
                "technique": "Proof Verifier Bug",
                "amount_usd": 570000000,
                "bridge_hack": true,
                "target_type": "DeFi Protocol",
                "classification": "Protocol Logic",
                "returned_funds_usd": null
            },
            {
                "date": "2018-01-26",
                "name": "Coincheck",
                "rank": 6,
                "chains": [
                    "NEM"
                ],
                "source": null,
                "technique": "Private Key 
…