Live Data Broker Search is the deepest of the three — its own queue, capacity limits, result filters, and an acquisition flow — so it has a dedicated guide. Tor & I2P and Email References are covered below.
All paths are relative to the base URL
https://client-api.leak.center/api. Send your token on every request:
The async pattern
Because live search is slow, every live endpoint is asynchronous. You never get results on the first call. You submit, you get an identifier back, you poll until the search finishes, then you read the results.1
Submit
POST your query. The response is immediate and carries a search or job identifier plus an initial status. No results yet.2
Poll
GET the status (or detail) endpoint with that identifier. Repeat every 1–2 seconds. The status moves through a lifecycle and lands on a terminal value when the source has been fully queried.3
Read
Once the status is terminal,
GET the results. Page through them with limit/offset or page/size, depending on the endpoint.For system-level (MSSP) accounts, every live endpoint accepts an optional
org_id query parameter to act on a managed organization. Regular users operate on their own organization and can omit it.Tor & I2P Network
Searches 10+ darknet and clearnet search engines live, forwarding your query directly through proxy servers and the Tor and I2P networks. Because every query fans out to external engines over slow anonymity networks, results can take several minutes — keep the query to a simple phrase such as a company, person, or domain name. Follow the async pattern with three endpoints:- Submit —
external_sources_search. The body takesquery(3–1024 characters) andvalidate(defaultfalse— whentrue, each hit is re-checked for the exact phrase; useful only for single-word queries). The response carriesid,status,resultCount, and a per-enginestatesmap. - Poll —
external_sources_search_statuswith thatid. WatchresultCountclimb and each engine instatesfinish. - Read —
external_sources_search_results. ReturnshasContentand acontentlist; each row carriesengine,url,description, andcvssScore.
Email References
Measures where an organization’s email addresses turn up across the web, deep web, and dark net — the more sources an address appears in, the larger that person’s exposure.- Submit —
mails_external_searchwith adomainorcompany_name. - Poll —
mails_external_search_statusby the returnediduntil it reportsFinished. - Read —
mails_external_search_results. AGETthat returns acount/next/previous/resultspage.
type (generic / personal), seniority and department (comma-separated, e.g. junior,senior and it,sales), position, source_domain, a full-text search, and ordering. Each result row carries business_mail, personal_mail, first_name, last_name, phone_number, position, seniority, department, still_at_least_on_one_page, max_extracted_on, and max_last_seen_on.
Live versus indexed: which to reach for
Reach for live search when freshness matters or the source is not in the index. Reach for quick or individual-source search when you need a fast answer from data already collected.
The API reference is the complete, field-by-field list of every endpoint and parameter for all three searches.