Discover/Intelx API
live

Intelx APIintelx.io

Search the Intelligence X index via API. Query by domain, email, IP, CIDR, Bitcoin address, and more across darknet, pastes, and data leaks.

This API takes change requests — .
Endpoint health
verified 3h ago
search
1/1 passing latest checkself-healing
Endpoints
1
Updated
3h ago

What is the Intelx API?

The Intelligence X API exposes 1 endpoint — search — that queries the intelx.io index across the public web, darknet (Tor/I2P), paste sites, and data leaks. A single call accepts selectors like email addresses, domains, IPs, CIDR ranges, Bitcoin addresses, or free-text terms and returns up to 100 matching records, each carrying metadata including file name, date, media type, and source bucket.

This call costs2 credits / call— charged only on success
Try it
Sort order for results.
Search selector: a domain, URL, email address, IP address, CIDR range, Bitcoin address, or free-text keyword.
Filter results by media/file type. Omitted or empty returns all types.
Filter results to items dated on or before this date. ISO 8601 format YYYY-MM-DD (e.g. 2024-12-31).
Filter results to items dated on or after this date. ISO 8601 format YYYY-MM-DD (e.g. 2023-01-01).
Maximum number of results to return (1-100).
api.parse.bot/scraper/1eefacdd-5c4c-4775-bfdd-9989f6995701/<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/1eefacdd-5c4c-4775-bfdd-9989f6995701/search?sort=most_relevant&term=example.com&media=paste' \
  -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 intelx-io-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: Intelligence X SDK — search indexed content, filter by media type."""
from parse_apis.intelx_io_api import IntelX, Sort, MediaType, InputFormatInvalid

client = IntelX()

# Search for paste records mentioning a domain, sorted by newest first.
for record in client.records.search(term="example.com", sort=Sort.NEWEST, media=MediaType.PASTE, limit=5):
    print(record.date, record.media_type, record.bucket, f"score={record.score}")

# Drill into the first result from a broader search to inspect its fields.
hit = client.records.search(term="example.com", sort=Sort.MOST_RELEVANT, limit=1).first()
if hit is not None:
    print(hit.system_id, hit.name or "(untitled)", hit.size, "bytes")

# Date-bounded search with error handling for malformed input.
try:
    for record in client.records.search(
        term="[email protected]",
        date_from="2023-01-01",
        date_to="2024-12-31",
        max_results=20,
        limit=10,
    ):
        print(record.date, record.type, record.access_level)
except InputFormatInvalid as e:
    print("Bad input:", e.message)

print("exercised: records.search (paginated, filtered, date-bounded, error-handled)")
All endpoints · 1 totalmissing one? ·

Search the Intelligence X index for records matching a term (domain, URL, email, IP, CIDR, Bitcoin address, etc.). Internally initiates an async search and polls for results. Returns metadata about matching files and documents including name, date, media type, source bucket, and relevance score. Each call makes two sequential upstream requests (initiate + fetch), so latency is ~3 seconds. Results are capped at 100 per call.

Input
ParamTypeDescription
sortstringSort order for results.
termrequiredstringSearch selector: a domain, URL, email address, IP address, CIDR range, Bitcoin address, or free-text keyword.
mediastringFilter results by media/file type. Omitted or empty returns all types.
date_tostringFilter results to items dated on or before this date. ISO 8601 format YYYY-MM-DD (e.g. 2024-12-31).
date_fromstringFilter results to items dated on or after this date. ISO 8601 format YYYY-MM-DD (e.g. 2023-01-01).
max_resultsintegerMaximum number of results to return (1-100).
Response
{
  "type": "object",
  "fields": {
    "status": "Search status code (0 = complete)",
    "records": "Array of matching records with metadata",
    "search_id": "Unique identifier for this search session (UUID string)",
    "total_found": "Number of records returned in this response"
  },
  "sample": {
    "data": {
      "status": 0,
      "records": [
        {
          "date": "2026-08-13T00:06:24.958547Z",
          "name": "https://yagiz.co/release-of-ada-v3",
          "size": 25711,
          "type": "Text",
          "added": "2026-08-13T00:06:24.98647Z",
          "score": 49,
          "bucket": "Web » Public » Americas",
          "system_id": "727575dc-805b-4579-a513-e90a343ec87b",
          "media_type": "Website HTML",
          "storage_id": "REDACTED_SECRET",
          "description": "",
          "access_level": "Public"
        }
      ],
      "search_id": "09c715df-a2a7-4461-8bd5-82b6c13ceebd",
      "total_found": 1
    },
    "status": "success"
  }
}

About the Intelx API

What the search endpoint returns

The search endpoint accepts a term parameter — a domain, URL, email address, IP address, CIDR range, Bitcoin address, or keyword — and returns an array of matching records. Each record includes metadata such as the document name, date, media type, and the source bucket (e.g., a paste site, darknet node, or leak dataset). The response also includes a search_id (UUID), a status code (0 = complete), and total_found indicating how many records are in the current response.

Filtering results

Results can be scoped with optional parameters. Use date_from and date_to (ISO 8601 format YYYY-MM-DD) to restrict records to a specific time window. The media parameter filters by file or content type; omitting it returns all types. sort controls result ordering, and max_results caps the response at between 1 and 100 records.

Coverage scope

Intelligence X indexes content from sources that are often excluded from conventional search: Tor and I2P sites, paste services, data breach dumps, and archived public web content. This makes the search endpoint particularly relevant for OSINT investigations, credential exposure monitoring, and domain or IP footprint analysis. Selector support is broad — Bitcoin addresses let analysts trace wallet references across indexed documents, while CIDR ranges allow network-level lookups.

Reliability & maintenanceVerified

The Intelx API is a managed, monitored endpoint for intelx.io — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when intelx.io 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 intelx.io 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
3h ago
Latest check
1/1 endpoint 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
  • Check whether a corporate domain appears in indexed data leak or breach documents
  • Look up whether a specific email address is referenced in paste sites or darknet content
  • Trace Bitcoin wallet addresses mentioned across indexed dark web and leak datasets
  • Scope the exposure footprint of an IP range using CIDR-based queries
  • Identify indexed paste or leak records referencing a specific URL or subdomain
  • Monitor when new records matching a keyword or selector appear in the Intelligence X index
  • Filter data leak records by date range to investigate incidents within a known time window
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Intelligence X have an official developer API?+
Yes. Intelligence X provides an official API documented at https://intelx.io/api. The Parse endpoint wraps the same underlying data and adds filtering convenience for common selector types.
What does the search response actually contain — does it return document content or just metadata?+
The search endpoint returns metadata only: document name, date, media type, source bucket, and the record identifiers. It does not return the full text or binary content of matched documents. The total_found field tells you how many records matched, and status confirms whether the result set is complete.
Is there a way to retrieve the actual content of a matched document?+
Not currently. The API covers the discovery layer — record metadata, source bucket, date, and media type. It does not expose a document-content fetch endpoint. You can fork this API on Parse and revise it to add a content-retrieval endpoint if your use case requires document body access.
Are there limitations on what selectors the search endpoint recognizes?+
The term parameter accepts domains, URLs, email addresses, IPs, CIDR ranges, Bitcoin addresses, and free-text keywords. Selector types outside this list (for example, phone numbers or cryptocurrency addresses for chains other than Bitcoin) are not formally supported, and results for unsupported formats may be empty. You can fork the API on Parse and revise it to add explicit support for additional selector types.
How fresh is the data returned by the search endpoint?+
Freshness depends on when Intelligence X indexed the source content, which varies by source bucket. The date_from and date_to filter parameters let you narrow results to a known time window, but the API does not expose an index-lag or last-crawled field for individual records.
Page content last updated . Spec covers 1 endpoint from intelx.io.
Related APIs in OtherSee all →
intelbase.is API
Search any email address to uncover associated data breaches, account registrations, infostealer logs, and service registration status all in one place. Get comprehensive intelligence on email exposure and digital footprint without leaving a single platform.
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.
data.inpi.fr API
Search and discover French industrial property information including patents, trademarks, designs, and company registrations from the official INPI national register. Find the intellectual property data you need to research competitors, verify trademark availability, or explore patent landscapes in France.
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.
brofindai.com API
Search and discover AI tools and MCP servers from the BroFindAI directory to find the perfect solutions for your projects. Quickly browse through curated listings of available tools and servers to compare features and functionality.
openalex.org API
Search and retrieve millions of academic papers, articles, and books from OpenAlex's comprehensive global research catalog to find scholarly works by topic, author, or citation. Discover detailed information about research publications including metadata, abstracts, and citation counts to stay current with academic literature in your field.
offshoreleaks.icij.org API
Search for entities, individuals, and their financial connections across major offshore leak investigations including the Panama Papers and Pandora Papers. Explore detailed relationship graphs, browse officer records, and analyze bulk datasets to uncover offshore financial activities and networks.
arxiv.org API
Search and discover academic research papers on arXiv using keywords, authors, titles, categories, and dates, then access detailed metadata for any paper. Browse the complete arXiv category taxonomy to explore research across different scientific disciplines.