> ## 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 Documentation

> Comprehensive data intelligence API for breach search, stealer analysis, victims, scanners, and OSINT lookups

<img className="block dark:hidden" src="https://mintcdn.com/oathnet/ji9arpBwzavZ736u/images/hero-light.svg?fit=max&auto=format&n=ji9arpBwzavZ736u&q=85&s=c3f169efb48a1a31ada00e6b3b1cadd6" alt="OathNet API" width="800" height="400" data-path="images/hero-light.svg" />

<img className="hidden dark:block" src="https://mintcdn.com/oathnet/ji9arpBwzavZ736u/images/hero-dark.svg?fit=max&auto=format&n=ji9arpBwzavZ736u&q=85&s=00ca31a659785d02c489a2ab5a2b5a93" alt="OathNet API" width="800" height="400" data-path="images/hero-dark.svg" />

## Welcome to OathNet API

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

<CardGroup cols={2}>
  <Card title="Quickstart" icon="rocket" href="/introduction/quickstart">
    Make your first API call in under 5 minutes
  </Card>

  <Card title="API Reference" icon="code" href="/api-reference/overview">
    Use the generated OpenAPI reference for exact endpoint details
  </Card>

  <Card title="SDKs" icon="brackets-curly" href="/sdks/overview">
    Use the official client libraries and examples
  </Card>

  <Card title="Guides" icon="book-open" href="/guides/scanners">
    Learn scanners, pagination, search sessions, and error handling
  </Card>
</CardGroup>

## Core Capabilities

<CardGroup cols={3}>
  <Card title="Breach Search" icon="database" color="#DC2626">
    Search current breach records with field filters, autocomplete, and AI-assisted filter generation.
  </Card>

  <Card title="Stealer & Victims" icon="file-code" color="#EA580C">
    Search stealer records, pivot to victim manifests, inspect files, and download archives.
  </Card>

  <Card title="Scanners & OSINT" icon="radar" color="#2563EB">
    Monitor new exposure automatically and enrich results with Discord, Steam, Xbox, Roblox, Google, and IP lookups.
  </Card>
</CardGroup>

## Quick Example

Make your first API call against the current breach search surface:

<Warning>
  The header name must be lowercase: `x-api-key`.
</Warning>

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET "https://oathnet.org/api/service/v2/breach/search?q=user@example.com" \
    -H "x-api-key: YOUR_API_KEY"
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      "https://oathnet.org/api/service/v2/breach/search",
      params={"q": "user@example.com"},
      headers={"x-api-key": "YOUR_API_KEY"}
  )

  payload = response.json()
  print(f"Found {payload['data']['meta']['total']} results")
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch(
    "https://oathnet.org/api/service/v2/breach/search?q=user@example.com",
    {
      headers: { "x-api-key": "YOUR_API_KEY" }
    }
  );

  const payload = await response.json();
  console.log(`Found ${payload.data.meta.total} results`);
  ```
</CodeGroup>

<Card title="Response" icon="arrow-down">
  ```json theme={null}
  {
    "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
      }
    }
  }
  ```
</Card>

## What OathNet Offers

<AccordionGroup>
  <Accordion title="Breach Search" icon="database">
    Use `/service/v2/breach/search` for current breach search, plus the autocomplete and AI filter helpers to improve discovery.
  </Accordion>

  <Accordion title="Stealer & Victims" icon="file-code">
    Use `/service/v2/stealer/search`, `/service/v2/victims/search`, manifests, file search, and archive downloads to investigate compromised logs.
  </Accordion>

  <Accordion title="Scanners" icon="radar">
    Use `/scanners/*` to create monitors for newly indexed stealer or breach results with email, Discord, or webhook delivery.
  </Accordion>

  <Accordion title="Search Sessions & OSINT" icon="magnifying-glass">
    Use `/service/*` for search sessions, original search routes, and point lookups.
  </Accordion>
</AccordionGroup>

## Getting Help

<CardGroup cols={2}>
  <Card title="Discord Community" icon="discord" href="https://discord.gg/DCjnk9TAMK">
    Join Discord for help and discussion
  </Card>

  <Card title="Email Support" icon="envelope" href="mailto:support@oathnet.org">
    Contact support directly
  </Card>
</CardGroup>

<Note>
  Start with the [Quickstart Guide](/introduction/quickstart) if you are new to the current v2 surface.
</Note>
