Skip to main content

Transfer details

This endpoint retrieves full information about a transfer, including:

  • base transfer metadata
  • blockchain data
  • risk assessment
  • associated address and token
  • linked transaction (if available)

HTTP Request

GET /v1/transfers/{id}/

Where:

  • {id} — transfer ID (UUID)

Response structure

You will receive a detailed object describing the transfer and its risk.

Example response

{
"id": "4a1fea6b-506f-4c77-bc3b-e9e4e7bd2c19",
"created_at": "2025-11-18T10:40:23.553675+03:00",
"network": "ETH",
"tx_hash": "0xd5554cabc4d3a9ecfd2118aefc93f8b50e0c5ec2b54c7249a2cf273e612cfd6b",
"direction": "incoming",
"amount": "950.12",
"token_symbol": "USDT",
"token_address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"from_address": "0x12a84f65c9aadbde3a47779f28d7d3d3a634e2f2",
"to_address": "0x98f79674d5f2f777d44e253bfaf905d7491e8cef",
"occurred_at": "2025-11-18T10:40:22+03:00",
"fiat_value": 950.12,
"fiat_currency": "USD",
"risk_level": "medium",
"risk_score": 52,
"risk_reasons": [
{
"category": "exchange",
"risk_level": "low",
"weight": 0.1
},
{
"category": "p2p_exchange",
"risk_level": "medium",
"weight": 0.9
}
]
}

Field descriptions

General fields

FieldTypeDescription
idstring (UUID)Transfer ID
created_atdatetimeWhen the transfer object was created
networkstringBlockchain network (ETH, BTC, etc.)
directionstringincoming or outgoing
tx_hashstring or nullBlockchain transaction hash
occurred_atdatetimeTimestamp when the transaction occurred

Amount & token info

FieldTypeDescription
amountstringToken or coin amount
token_symbolstringToken symbol (USDT, ETH, etc.)
token_addressstring or nullToken contract address

Addresses

FieldTypeDescription
from_addressstringSender address
to_addressstringRecipient address

Risk fields

FieldTypeDescription
risk_levelstringhigh, medium, low, undefined
risk_scorenumber or nullScored risk value
risk_reasonsarrayBreakdown by category

Try it

GET/v1/transfers/{id}/
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.
}