Skip to main content

Check password hash

Action ID: tools.dehashed.check_password_hash Check a password hash. Calls POST /v2/search-password directly with a SHA-256 password hash. Reference: https://app.dehashed.com/documentation/api

Secrets

Required secrets:
  • dehashed: required values DEHASHED_API_KEY.

Input fields

string
required
SHA-256 hash of the password to check.
string | null
Base URL of the DeHashed API.Default: null.

List data wells

Action ID: tools.dehashed.list_data_wells List data wells. Calls GET /data-wells directly. This endpoint does not require an API key. Reference: https://app.dehashed.com/documentation/api

Input fields

string | null
Base URL of the DeHashed API.Default: null.
integer | null
Number of data wells to return. DeHashed supports 20 or 50.Default: 20.
integer | null
Result page number. Must be 1 or greater.Default: 1.
string | null
Sort by added, name, date, or records. Append -ASC or -DESC for direction.Default: null.

Search breaches

Action ID: tools.dehashed.search_breaches Search breaches. Calls POST /v2/search directly with a DeHashed API-native payload. Reference: https://app.dehashed.com/documentation/api

Secrets

Required secrets:
  • dehashed: required values DEHASHED_API_KEY.

Input fields

string
required
DeHashed search query. Use DeHashed search syntax, such as email:“user@example.com”, username:“someuser”, or a bare quoted value to match across fields.
string | null
Base URL of the DeHashed API.Default: null.
boolean
Whether DeHashed should remove duplicate results.Default: false.
integer
Result page number. Must be 1 or greater.Default: 1.
boolean
Whether to use regex matching. Cannot be true when wildcard is true.Default: false.
integer
Results per page. Must be between 1 and 10000.Default: 100.
boolean
Whether to use wildcard matching. Cannot be true when regex is true.Default: false.