Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/api-reference/leaksdb/endpoints/get-by-domain.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ api: "GET https://api.flare.io/leaksdb/identities/by_domain/{domain}"
[/credentials/_search <Icon icon="code" size={16} />](/api-reference/leaksdb/endpoints/post-credentials-search)
</Warning>

import GatedAccessFeatureAstp from '/snippets/gated-access-feature-astp.mdx';

<GatedAccessFeatureAstp />

Returns a list of accounts matching the domain provided.
The format of the domain should include everything after the `@`.

Expand Down
4 changes: 4 additions & 0 deletions docs/api-reference/leaksdb/endpoints/get-by-keyword.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ api: "GET https://api.flare.io/leaksdb/identities/by_keyword/{keyword}"
[/credentials/_search <Icon icon="code" size={16} />](/api-reference/leaksdb/endpoints/post-credentials-search)
</Warning>

import GatedAccessFeatureAstp from '/snippets/gated-access-feature-astp.mdx';

<GatedAccessFeatureAstp />

Returns a list of identities with a matching keyword.

Results are returned in ascending order by id.
Expand Down
4 changes: 4 additions & 0 deletions docs/api-reference/leaksdb/endpoints/get-by-password.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ api: "GET https://api.flare.io/leaksdb/identities/by_password/{password}"
[/credentials/_search <Icon icon="code" size={16} />](/api-reference/leaksdb/endpoints/post-credentials-search)
</Warning>

import GatedAccessFeatureAstp from '/snippets/gated-access-feature-astp.mdx';

<GatedAccessFeatureAstp />

This endpoint allow to search by passwords.
It will return a list of JSON objects containing identities that have been associated seen using this password.

Expand Down
4 changes: 2 additions & 2 deletions docs/api-reference/leaksdb/endpoints/get-credentials-v1.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ title: "List All Credentials"
api: "GET https://api.flare.io/leaksdb/credentials"
---

import GatedAccessFeatureAstp from '/snippets/gated-access-feature-astp.mdx';

<Warning>
**DEPRECATED:** This endpoint should be replaced by
[List All Credentials V2 <Icon icon="code" size={16} />](/api-reference/leaksdb/endpoints/get-credentials)
</Warning>

import GatedAccessFeatureAstp from '/snippets/gated-access-feature-astp.mdx';

<GatedAccessFeatureAstp />

This endpoint will return a list of all crendentials in Flare's database, meant to be used as a feed.
Expand Down
4 changes: 4 additions & 0 deletions docs/api-reference/leaksdb/endpoints/get-source.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ title: "Retrieve Source"
api: "GET https://api.flare.io/leaksdb/sources/{source_id}"
---

import GatedAccessFeatureAstp from '/snippets/gated-access-feature-astp.mdx';

<GatedAccessFeatureAstp />

This endpoint will return a source object for a given `source_id` if it exists.

<ResponseExample>
Expand Down
4 changes: 4 additions & 0 deletions docs/api-reference/leaksdb/endpoints/get-sources.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ title: "List All Sources"
api: "GET https://api.flare.io/leaksdb/v2/sources"
---

import GatedAccessFeatureAstp from '/snippets/gated-access-feature-astp.mdx';

<GatedAccessFeatureAstp />

This endpoint will return all sources, paginated and in ascending order from least recently added to most recently added.

<ResponseExample>
Expand Down
4 changes: 4 additions & 0 deletions docs/api-reference/leaksdb/endpoints/post-by-accounts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ title: "List by Bulk Accounts"
api: "POST https://api.flare.io/leaksdb/identities/by_accounts"
---

import GatedAccessFeatureAstp from '/snippets/gated-access-feature-astp.mdx';

<GatedAccessFeatureAstp />

Returns a list of identities with leaked passwords given a list of accounts.
This endpoint only matches exact accounts and doesn’t allow wildcard or domain searches.
This is API is useful when doing batch processing.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@
title: "Search Credentials"
api: "POST https://api.flare.io/leaksdb/v2/credentials/_search"
---

import GatedAccessFeatureAstp from '/snippets/gated-access-feature-astp.mdx';

<GatedAccessFeatureAstp />

Returns a list of credentials matching the query provided.

<ResponseExample>
Expand Down
3 changes: 3 additions & 0 deletions docs/guides/credentials-export-domain.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
title: "Exporting a Domain's Credentials"
---

import GatedAccessFeatureAstp from '/snippets/gated-access-feature-astp.mdx';

<GatedAccessFeatureAstp />

Flare's Leaked Credentials API can be used to export a domain's leaked credentials.

Expand Down