API v1 Documentation
Full-featured REST API for IP enrichment, JARM fingerprints, favicon search, certificate lookup, and threat intelligence. 53M+ IPs indexed, updated daily.
rocket_launch Quick Start
Get your free API key at Account → Profile. All responses are JSON with consistent {"ok": true, "data": {...}} envelope.
list Endpoints
/api/v1/ip/{ip}/
Full enrichment for an IP address: all open ports, services, banners, CVEs, JARM, SSL certs, WAF, RDAP, geolocation, threat intelligence, and more.
Example
Response
/api/v1/search/
Full-text and dork search across 150M+ service records. Supports all search operators.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| q | string | Yes | Search query (dork syntax) |
| page | int | No | Page number (default: 1, max: 100) |
| per_page | int | No | Results per page (default: 20, max: 100) |
Example
/api/v1/jarm/{hash}/
UNIQUELook up all hosts matching a JARM TLS fingerprint. 30M+ JARM hashes indexed. Use for C2 infrastructure tracking, threat hunting, and TLS fingerprinting. No other standalone JARM API exists.
Example
Search Response
/api/v1/favicon/{hash}/
Find all hosts serving a specific favicon by its hash. 11M+ favicons indexed. Essential for OSINT, bug bounties, and asset discovery.
Example
/api/v1/cert/{sha256}/
Find hosts sharing an SSL/TLS certificate by its SHA256 fingerprint. Search certificates by issuer or subject name.
Endpoints
/api/v1/threats/
BUSINESS+Threat intelligence feed: C2 servers, botnets, miners, RATs, malware, tor exit nodes. 1.3M+ threat records updated daily. Available on Business and Enterprise plans.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| type | string | No | c2, miner, botnet, rat, malware, tor_exit |
| country | string | No | 2-letter country code |
| limit | int | No | Max results (default: 100, max: 10,000) |
Example
/api/v1/stats/
PUBLICDatabase statistics. No authentication required.
/api/v1/account/usage/
Check your current API usage, remaining quota, and plan details.
speed Rate Limits & Pricing
Every response includes X-RateLimit-Limit and X-RateLimit-Remaining headers.
| Plan | Price | API Requests/Day | Threat Feed | JARM/Favicon/Cert |
|---|---|---|---|---|
| Free | $0 | 100 | cancel | check_circle |
| Pro | $49/mo | 5,000 | cancel | check_circle |
| Business | $149/mo | 25,000 | check_circle | check_circle |
| Enterprise | Custom | Unlimited | check_circle | check_circle |
error_outline Error Responses
| Status | Meaning |
|---|---|
| 400 | Bad Request — missing or invalid parameters |
| 401 | Unauthorized — missing API key |
| 403 | Forbidden — invalid key or feature not in plan |
| 429 | Rate limit exceeded |
| 503 | Service unavailable — database error |