Skip to main content

Transfer counterparty

Returns counterparty information for a specific transfer, including:

  • detected entity category (e.g. exchange, mixer, PSP)
  • entity name (if available)
  • exposure value in fiat (if applicable)

HTTP Request

GET /v1/transfers/{id}/counterparty/


Path parameters

ParameterTypeRequiredDescription
idstringYesTransfer ID (UUID)

Response

The endpoint returns a compact object describing the current counterparty of the transfer.

Fields

FieldTypeDescription
check_statusstringStatus of the counterparty check (e.g. checking, checked, failed).
checked_atstring or nullTimestamp when the counterparty check was completed (ISO 8601).
entity_categorystring or nullAML category of the counterparty (e.g. exchange, mixer, scam).
entity_namestring or nullHuman-readable name of the entity (e.g. Binance).
exposurenumber or nullExposure value in USD (if applicable).

Example response

{
"check_status": "checked",
"checked_at": "2025-11-17T17:12:08.426431Z",
"entity_category": "exchange",
"entity_name": "Binance",
"exposure": null
}

Try it

GET/v1/transfers/{id}/counterparty/
API KEY ID
API KEY SECRET
Path params
id
HTTP Request
Press "Send Request" to generate HTTP request.
HTTP …
{
// Response will be shown here after the request.
}