List of transfers
Returns a paginated list of transfers for the current account with basic risk information and metadata.
HTTP Request
GET /v1/transfers/
Query parameters
{
"page": 1,
"page_size": 20,
"null_values": false,
"occurred_from": "2025-04-01T00:00:00Z",
"occurred_to": "2025-04-30T23:59:59Z",
"address": "string | null",
"tx_hash": "string | null"
}
Field descriptions
| Parameter | Type | Required | Description |
|---|---|---|---|
page | integer | No | Page number within the paginated result set. Defaults to 1. |
page_size | integer | No | Number of results to return per page. Defaults to 20. |
null_values | bool | No | If true, include transfers where some fields are null (e.g. missing on-chain metadata). |
occurred_from | string | No | Filter by occurrence time from (ISO 8601). |
occurred_to | string | No | Filter by occurrence time to (ISO 8601). |
address | string | No | Filter by specific address (sender or recipient). |
tx_hash | string | No | Filter by specific transaction hash. |
Example request
GET /v1/transfers/?page=1&page_size=10&occurred_from=2025-04-01T00:00:00Z&occurred_to=2025-04-30T23:59:59Z HTTP/1.1
Host: kyt-api.bittax.ru
API-KEY-ID: <your_api_key_id>
API-TIMESTAMP: <timestamp>
API-SIGNATURE: <signature>
Response
Returns a paginated object with a list of transfers in the items field.
Example response
{
"page": 1,
"page_size": 10,
"total_pages": 5,
"total_items": 43,
"items": [
{
"id": "fc7afac4-96a1-40b5-a202-88295f6ceb8c",
"network": "ETH",
"tx_hash": "0x4e3c6a2f5b6e8a...e9c7e4f1d4",
"from_address": "0x98f79674d5f2f777d44e253bfaf905d7491e8cef",
"to_address": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
"occurred_at": "2025-04-14T15:52:34.712080+03:00",
"amount": "1234.5678",
"token_symbol": "USDT",
"fiat_value": 1234.5,
"fiat_currency": "USD",
"risk_level": "medium",
"risk_score": 65
}
]
}
Try it
GET/v1/transfers/
API KEY ID
API KEY SECRET
Query params (JSON)
HTTP Request
Press "Send Request" to generate HTTP request.
HTTP …
{
// Response will be shown here after the request.
}