GET
/
leaksdb
/
identities
/
by_keyword
/
{keyword}

Returns a list of identities with a matching keyword.

Results are returned in ascending order by id.

Paging

By using the id of the last item from a request as the value for the query parameter from of the following request, you will be able to scroll through results. When the result contains an empty list, you know that you received all results.

Wildcards

The keyword may contain a wildcard. Wildcards should either be at the start or at the end of your query.

Example keywords:

  • johndoe* will match an identity with the name johndoe and any string that follows(e.g. johndoe@test.com).
  • *acme.com will match any identity that finishes with acme.com (e.g. myuser@acme.com).
  • johndoe will match either johndoe or JOHNdoe.

Path Parameters

keyword
string

The keyword to search for.

Query Parameters

size
number

Maximum size of the JSON object that will be returned (maximum 10 000).

from
number