API Documentation

Authentication

Most endpoints require an API key sent in the X-API-Key header, or as ?api_key=. Public endpoints (status, stats, check) need no key.

YOUR API KEY
d02ecf62ce4e9b53a3a558f4448adea6392399e685fdaf0751deee88926d3581

Base URL

https://threats.quantus.biz//api.php

Endpoints

MethodEndpointDescriptionAuthExample
GET status API status & version Public api.php?endpoint=status
GET stats Database statistics Public api.php?endpoint=stats
GET check Fast malicious check for one IoC Public api.php?endpoint=check&ioc=1.2.3.4
GET search Search indicators (contains) Required api.php?endpoint=search&q=example.com
GET lookup Full lookup + enrichments Required api.php?endpoint=lookup&ioc=1.2.3.4
GET recent Recent indicators Required api.php?endpoint=recent&limit=100&type=ip
GET top_threats Most-corroborated threats Required api.php?endpoint=top_threats&limit=50
GET by_category Indicators in a category Required api.php?endpoint=by_category&category=Ransomware
GET categories List all categories Required api.php?endpoint=categories
GET export Export IoCs (json/csv) Required api.php?endpoint=export&type=ip&format=csv
POST bulk_check Check many IoCs at once Required api.php?endpoint=bulk_check

Example: cURL

# Check if an IP is malicious (public)
curl "https://threats.quantus.biz//api.php?endpoint=check&ioc=1.2.3.4"

# Search (authenticated)
curl -H "X-API-Key: d02ecf62ce4e9b53a3a558f4448adea6392399e685fdaf0751deee88926d3581" \
     "https://threats.quantus.biz//api.php?endpoint=search&q=evil.com"

# Bulk check (POST)
curl -X POST -H "X-API-Key: d02ecf62ce4e9b53a3a558f4448adea6392399e685fdaf0751deee88926d3581" \
     -H "Content-Type: application/json" \
     -d '{"iocs":["1.2.3.4","evil.com","d41d8cd98f00b204e9800998ecf8427e"]}' \
     "https://threats.quantus.biz//api.php?endpoint=bulk_check"

Integration Snippets

Python

import requests
r = requests.get(
  "https://threats.quantus.biz//api.php",
  params={"endpoint":"check","ioc":"1.2.3.4"})
print(r.json())

PowerShell

Invoke-RestMethod `
  -Uri "https://threats.quantus.biz//api.php?endpoint=check&ioc=1.2.3.4"
Workstation · Copilot · AI Skills · Automation · Playbooks · Lookups · Docs · Reports

🤖 AI Copilot

🔍 Lookup & Enrich

💡 Recommendations

⚙ Automation

Cron: 0 * * * * php /home/zaptf0zdggll/public_html/threats/cron.php