API Documentation Enterprise

Welcome to the Stolen API documentation. Our API provides programmatic access to over 172 billion leaked records, powerful OSINT tools, and real-time data analysis capabilities.

Base URL:

https://stolen.tax/api/v2

Authentication

Authenticate your requests using your Access Key found on the dashboard. You can pass it as a Bearer token in the header (recommended) or as a query parameter.

Authorization Header (Recommended)
Authorization: Bearer YOUR_ACCESS_KEY
Query Parameter
https://stolen.tax/api/v2/module?token=YOUR_ACCESS_KEY

Breach Modules

GET /stealer

OsintCat Database Search

Search across multiple aggregated databases for credentials.

Parameter Description
query string Email, Username, or IP address to search.
Example Request
curl "https://stolen.tax/api/v2/stealer?query=test@example.com" \
  -H "Authorization: Bearer YOUR_KEY"
POST /snusbase

Snusbase Search

Direct access to Snusbase breach data. Requires API Key authentication via Header or Query.

Example Request
curl -X POST "https://stolen.tax/api/v2/snusbase" \
  -H "Authorization: Bearer YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query": "test@example.com"}'
GET /intelbase

IntelBase Lookup

Advanced intelligence vault search.

Example Request
curl "https://stolen.tax/api/v2/intelbase?query=test@example.com" \
  -H "Authorization: Bearer YOUR_KEY"

OSINT Modules

GET /username

Username Enumeration

Check usage of a username across hundreds of social media platforms.

curl "https://stolen.tax/api/v2/username?query=admin" \
  -H "Authorization: Bearer YOUR_KEY"
GET /ip

IP Intelligence

Get geolocation, ISP, and risk info for an IP address.

curl "https://stolen.tax/api/v2/ip?query=8.8.8.8" \
  -H "Authorization: Bearer YOUR_KEY"
GET /discord

Discord Lookup

Resolve Discord User IDs to account information.

curl "https://stolen.tax/api/v2/discord?query=123456789" \
  -H "Authorization: Bearer YOUR_KEY"

Errors & Status Codes

Code Description
200 Success.
400 Bad Request (Missing parameters).
401 Unauthorized (Invalid API Key).
403 Forbidden (Plan restriction).
429 Rate Limited.
500 Server Error.