Integrations
LeakCheck
APIs
Lookup API V2

Lookup via Pro API v2

Search for email, domain, keyword, username, phone, email hash, password hash, origin, or password.

For more information on the API, see Pro API v2 Documentation (opens in a new tab).

SDK Import:

from admyral.actions import leakcheck_v2_lookup

Arguments:

Argument NameDescriptionRequired
Query queryThe data to query forYes
Query Type query_typeThe data type to query for. Only email, username, phone number and hash can be detected automatically. For other data you must set the type explicitly. Available types: email, domain, keyword, username, phone, hash, phash, origin, password-
Limit limitThe number of results to return. Max: 1000.Yes

Returns

A JSON object.

Required Secrets

Secret PlaceholderDescription
LEAKCHECK_SECRETLeakCheck secret. See LeakCheck setup

SDK Example

result = leakcheck_v2_lookup(
	query="your.email@gmail.com",
    query_type="email",
    secrets={"LEAKCHECK_SECRET": "leakcheck_secret"}
)