Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.oathnet.org/llms.txt

Use this file to discover all available pages before exploring further.

OathNet API

Welcome to OathNet API

OathNet provides breach search, stealer analysis, victim exploration, scanners, and OSINT enrichment through a single API platform.

Quickstart

Make your first API call in under 5 minutes

API Reference

Explore the full current endpoint surface

SDKs

Use the official client libraries and examples

Guides

Learn scanners, pagination, search sessions, and error handling

Core Capabilities

Breach Search

Search current breach records with field filters, autocomplete, and AI-assisted filter generation.

Stealer & Victims

Search stealer records, pivot to victim manifests, inspect files, and download archives.

Scanners & OSINT

Monitor new exposure automatically and enrich results with Discord, Steam, Xbox, Roblox, Google, and IP lookups.

Quick Example

Make your first API call against the current breach search surface:
The header name must be lowercase: x-api-key.
curl -X GET "https://oathnet.org/api/service/v2/breach/search?q=user@example.com" \
  -H "x-api-key: YOUR_API_KEY"

Response

{
  "success": true,
  "message": "Request completed successfully",
  "data": {
    "items": [
      {
        "email": "user@example.com",
        "password": "***REDACTED***",
        "dbname": "linkedin_2012",
        "indexed_at": "2026-04-18T12:00:00Z"
      }
    ],
    "meta": {
      "count": 1,
      "total": 1,
      "took_ms": 4,
      "has_more": false,
      "total_pages": 1
    }
  }
}

What OathNet Offers

Use /service/v2/stealer/search, /service/v2/victims/search, manifests, file search, and archive downloads to investigate compromised logs.
Use /scanners/* to create monitors for newly indexed stealer or breach results with email, Discord, or webhook delivery.
Legacy search and OSINT endpoints remain available under /service/* when you need compatibility or point lookups.

Getting Help

Discord Community

Join Discord for help and discussion

Email Support

Contact support directly
Start with the Quickstart Guide if you are new to the current v2 surface.