Discover/IntelBase API
live

IntelBase APIintelbase.is

Query any email address for data breaches, infostealer logs, account registrations, and service validation via the IntelBase API. 2 endpoints.

This API takes change requests — .
Endpoint health
verified 1d ago
list_modules
lookup_email
2/2 passing latest checkself-healing
Endpoints
2
Updated
1d ago

What is the IntelBase API?

The IntelBase API gives developers structured email intelligence across 2 endpoints, returning breach records, infostealer log exposure, and account registration status for any queried email address. The lookup_email endpoint consolidates up to 50 breach results alongside stealer log counts, a timeline of activity, and a validator object that separates confirmed registered services from unregistered ones. The list_modules endpoint returns the full catalog of services IntelBase checks, including each module's id, name, domain, and type.

Try it

No input parameters required.

api.parse.bot/scraper/21b5335e-1870-4008-87c7-0ff780888935/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/21b5335e-1870-4008-87c7-0ff780888935/list_modules' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace intelbase-is-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: IntelBase SDK - bounded, re-runnable; every call capped."""
from parse_apis.intelbase_is_api import IntelBase, RateLimitError

client = IntelBase()

# List available intelligence modules (services checked during lookup)
for module in client.modules.list(limit=3):
    print(module.name_formatted, module.domain, module.type_name)

# Look up an email address for breach and account intelligence
try:
    report = client.email_reports.get(email="[email protected]")
    print(report.email, report.meta.first_seen, report.meta.last_seen)
    print("Breaches:", report.data_breaches.amount)
    for breach in report.data_breaches.results[:3]:
        print(" ", breach.source.name, breach.source.date, breach.password)
    print("Registered services:", len(report.validator.registered))
    for svc in report.validator.registered[:3]:
        print(" ", svc.name_formatted, svc.domain)
    print("Accounts found:", len(report.accounts))
    for acct in report.accounts[:2]:
        print(" ", acct.module.name_formatted, [f.key for f in acct.data.fields])
except RateLimitError as e:
    print("rate limited:", e)

print("exercised: modules.list, email_reports.get")
All endpoints · 2 totalmissing one? ·

Returns the complete catalog of services and platforms that IntelBase checks during an email lookup. Each module represents a site whose registration or account status can be verified. Results are not paginated - the full list is returned in one call.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "total": "total number of modules available",
    "modules": "array of supported service modules with id, name, domain, and type"
  },
  "sample": {
    "data": {
      "total": 98,
      "modules": [
        {
          "id": "6a1a5c74b026034d73e0df62",
          "name": "chess.com",
          "type": 0,
          "domain": "chess.com",
          "type_name": "account",
          "name_formatted": "Chess.com"
        },
        {
          "id": "6a1a5c75b026034d73e0df65",
          "name": "dropbox",
          "type": 0,
          "domain": "dropbox.com",
          "type_name": "account",
          "name_formatted": "Dropbox"
        }
      ]
    },
    "status": "success"
  }
}

About the IntelBase API

What the API Returns

The lookup_email endpoint accepts a single required parameter — email — and returns a structured response covering four distinct intelligence dimensions. The data_breaches object includes an amount field with the total breach count and a results array capped at 50 entries, each representing a known breach event. The stealer_logs object reports a compromised boolean, a count, and a results array of infostealer log entries tied to the email. The accounts array lists identified accounts with module metadata and extracted field values. The validator object splits service checks into registered and unregistered arrays so you can see exactly which platforms confirmed or rejected the email.

Meta and Timeline Data

The meta object inside a lookup_email response includes first_seen and last_seen timestamps, a cloaked flag, and a timeline array that tracks activity chronologically. These fields are useful for gauging how long an email has been active in known datasets and whether it has been obscured in any way.

Module Catalog

The list_modules endpoint takes no inputs and returns the complete set of services IntelBase checks. The response includes a total count and a modules array where each entry has an id, name, domain, and type. This is useful for understanding the scope of the validator checks returned by lookup_email and for building UI labels or filtering logic around specific services.

Reliability & maintenanceVerified

The IntelBase API is a managed, monitored endpoint for intelbase.is — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when intelbase.is changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official intelbase.is API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
1d ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Automated account takeover risk assessment using the stealer_logs compromised flag and count per email
  • Breach notification pipelines that check data_breaches.amount before alerting affected users
  • Onboarding fraud checks that verify whether a submitted email appears in known infostealer logs
  • Building a service exposure map by cross-referencing the accounts array with the list_modules catalog
  • Security research workflows that track first_seen and last_seen timestamps to date email exposure windows
  • Identity investigation tools that enumerate confirmed registered services from the validator.registered array
  • Threat intelligence dashboards that surface cloaked email flags alongside breach and stealer log counts
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does IntelBase have an official developer API?+
IntelBase does not publish a documented public developer API. The Parse API provides structured access to its email intelligence data.
How many breach records does lookup_email return, and what if there are more?+
The results array inside data_breaches is capped at 50 entries per request. The actual total count is always available in data_breaches.amount, so you can see when the full breach history exceeds what the results array contains. Pagination or retrieval of the full breach list beyond 50 entries is not currently exposed. You can fork this API on Parse and revise it to add paginated breach retrieval if your use case requires the complete set.
Does the API return phone numbers, physical addresses, or other PII linked to an email?+
Not currently. The API covers breach records, stealer log entries, account registrations, service validation status, and activity timestamps. Fields like phone numbers or postal addresses are not part of the response schema. You can fork this API on Parse and revise it to add any adjacent data the source exposes.
What does the cloaked flag in the meta object mean?+
The cloaked flag indicates whether the email has been identified as obscured or masked in some way within the datasets IntelBase checks. It is returned as a boolean inside the meta object alongside first_seen and last_seen timestamps.
Can I filter lookup_email results to only return stealer log data or only breach data?+
The endpoint always returns the full response object including accounts, validator, stealer_logs, data_breaches, and meta. There is no query parameter to request a subset of fields. Filtering to a specific dimension — such as stealer_logs only — would need to happen client-side after receiving the full response. You can fork this API on Parse and revise it to expose a filtered endpoint if you want to limit response size.
Page content last updated . Spec covers 2 endpoints from intelbase.is.
Related APIs in B2b DirectorySee all →
thecompaniesapi.com API
Enrich your company database with 80+ data points per company, search by industry or company details, and discover email patterns to drive your business intelligence. Find verified company information, get pricing data, and ask contextual questions about any organization to fuel your sales, marketing, or research efforts.
alienvault.com API
Search and analyze global threat intelligence data including indicators of compromise, threat pulses, and adversary profiles from the Open Threat Exchange community. Monitor recent security alerts and access detailed information about threats and adversaries to strengthen your cybersecurity defenses.
cyberbackgroundchecks.com API
Search for people by name or email to instantly retrieve their public information including addresses, phone numbers, relatives, and associates. Access detailed background records to verify identities, reconnect with contacts, or conduct people searches.
infobel.com API
Search and retrieve business and person contact information from Infobel directories across the globe to find phone numbers, addresses, and other details. Quickly locate companies or individuals by name to build targeted contact lists or verify business information worldwide.
dotdb.com API
Search domains and uncover keyword insights to research competitor strategies and domain market intelligence. Get detailed domain metadata, keyword reports, and pricing information to inform your SEO and business decisions.
dbugs.ptsecurity.com API
Search and explore detailed information about cybersecurity vulnerabilities, including trending threats and researcher profiles from PT Security's comprehensive vulnerability database. Track security researcher leaderboards and get in-depth parameters for specific vulnerabilities to stay informed about the latest threats.
bizapedia.com API
Search for detailed business profiles and contact information from Bizapedia, including company details, employee data, and communication channels. Access comprehensive business intelligence to research companies and build targeted contact lists.
apollo.io API
Find and learn more about potential leads by searching for people based on job title, location, keywords, and seniority level, then access their contact information, company details, and LinkedIn profiles. Get enriched profiles with structured data including names, titles, organizations, and more to power your sales and recruitment efforts.