### Search Credentials Source: https://docs.recordedfuture.com/reference/identity-search Find compromised identities across breach data and stealer logs for one or more domains. ```APIDOC ## POST /identity/credentials/search ### Description Find compromised identities across breach data and stealer logs for one or more domains. ### Method POST ### Endpoint /identity/credentials/search ### Request Body - **organization_id** (UhashId) - Required - The organization ID. - **domains** (array[string]) - Required - A domain or multiple domains to be queried. Max items: 100. - **domain_types** (array[string]) - Optional - The types of domains to be queried. Max items: 10. ### Request Example { "organization_id": "example-organization-id", "domains": [ "example-corp.com" ], "domain_types": [ "email" ] } ### Response #### Success Response (200) - **results** (array[object]) - Description of the search results. - **next_page_token** (string) - A token to retrieve the next page of results. #### Response Example { "results": [ { "domain": "example-corp.com", "domain_type": "email", "identity": "user@example-corp.com", "breach_date": "2023-01-15T00:00:00Z", "breach_name": "Example Breach", "source": "Breach Data" } ], "next_page_token": "example-next-page-token" } #### Error Response (400) - **status_code** (integer) - The HTTP status code. - **message** (string) - A description of the error. - **trace_id** (string) - A unique identifier for the request trace. #### Error Response (401) - **status_code** (integer) - The HTTP status code. - **message** (string) - A description of the error. - **trace_id** (string) - A unique identifier for the request trace. #### Error Response (403) - **status_code** (integer) - The HTTP status code. - **message** (string) - A description of the error. - **trace_id** (string) - A unique identifier for the request trace. #### Error Response (500) - **status_code** (integer) - The HTTP status code. - **message** (string) - A description of the error. - **trace_id** (string) - A unique identifier for the request trace. ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.