Event Feeds
List Tenant Credentials
Authentication API
- Tokens
Leaked Credentials API
- Credentials
- Sources
- Identities
- Cookies
Events API
Management API
- Identifiers
- Identifier Groups
- Alerts
- Current User
- Organization Members
- Reporting
- Tenants
Deprecated APIs
- Global Search
- Identities
- Event Feeds
Event Feeds
List Tenant Credentials
GET
/
me
/
feed
/
credentials
curl --request GET \
--url https://api.flare.io/firework/v2/me/feed/credentials \
--header 'Authorization: Bearer <token>'
{
"items": {
"credential_hash": "<string>",
"domain": "<string>",
"hash": "<string>",
"id": 123,
"identity_name": "<string>",
"ignored_at": "2023-11-07T05:31:56Z",
"imported_at": "<string>",
"known_password_id": 123,
"remediated_at": "2023-11-07T05:31:56Z",
"source": {
"breached_at": "<string>",
"description_en": "<string>",
"description_fr": "<string>",
"id": "<string>",
"leaked_at": "<string>",
"name": "<string>"
},
"source_id": "<string>"
},
"next": "<string>"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
Success
Was this page helpful?
curl --request GET \
--url https://api.flare.io/firework/v2/me/feed/credentials \
--header 'Authorization: Bearer <token>'
{
"items": {
"credential_hash": "<string>",
"domain": "<string>",
"hash": "<string>",
"id": 123,
"identity_name": "<string>",
"ignored_at": "2023-11-07T05:31:56Z",
"imported_at": "<string>",
"known_password_id": 123,
"remediated_at": "2023-11-07T05:31:56Z",
"source": {
"breached_at": "<string>",
"description_en": "<string>",
"description_fr": "<string>",
"id": "<string>",
"leaked_at": "<string>",
"name": "<string>"
},
"source_id": "<string>"
},
"next": "<string>"
}