Get purse transfers

Get all transfers sent to or received by the purse.

GET /purse-urefs/{purse_uref}/transfers

Query params

Query param
Description

from_block_height

From block height range

to_block_heights

To block height range

Sorting

Property
Description

timestamp

Sort transfers by timestamp

Default sorting is timestamp DESC

Optional properties

Property
Type
Description

initiator_public_key

string(68)

Initiator public key represented as a hexademical string

to_public_key

string(68)

Transfer recipient public key represented as a hexademical string

from_purse_public_key

string(68)

Public key of the account that owns the transfer source purse represented as a hexademical string. null when the sender purse is not own by an account

to_purse_public_key

string(68)

Public key of the account that owns the transfer target purse represented as a hexademical string. null when the target purse is not own by an account

to_account_info

Transfer recipient account info

to_centralized_account_info

Transfer recipient centralized account info

from_purse_account_info

Account info of the account that owns the transfer source purse. null when the sender purse is not own by an account

from_purse_centralized_account_info

Centralized account info of the account that owns the transfer source purse. null when the sender purse is not own by an account

to_purse_account_info

Account info of the account that owns the transfer target purse. null when the target purse is not own by an account

to_purse_centralized_account_info

Centralized account info of the account that owns the transfer target purse. null when the target purse is not own by an account

initiator_public_key

string(68)

Deploy caller public key represented as a hexadecimal string

rate

float32

CSPR rate for specified currency that was relevant at the moment of deploy creation

deploy

Transfer Deploy

initiator_cspr_name

string

Primary CSPR.name of the initiator account

to_cspr_name

string

Primary CSPR.name of the recipient account

from_purse_cspr_name

string

Primary CSPR.name of the account that owns the transfer source purse

to_purse_cspr_name

string

Primary CSPR.name of the account that owns the transfer target purse

Response

PaginatedResponse<Transfer>

Example

curl -X 'GET' \
  'https://api.testnet.cspr.cloud/purse-urefs/uref-3E23C9CE6B9F3EE3F6BB032410FD729DB56FB6F23B3C91A0A83BED28AAA38A1707-007/transfers' \
  -H 'accept: application/json' \
  -H 'authorization: 55f79117-fc4d-4d60-9956-65423f39a06a'
{
  "data": [
    {
      "amount": "9000000000",
      "block_height": 4949861,
      "deploy_hash": "a5ba91a49b5d792327de3eb8da39ccf7b363bab3aa4be76d83d4d74c114abc5e",
      "from_purse": "uref-3e23c9ce6b9f3ee3f6bb032410fd729db56fb6f23b3c91a0a83bed28aaa38a17-007",
      "id": 0,
      "initiator_account_hash": "1856e4a0b23c70b64e4509987680de0d99145fa0cdc71ad9b78760e18ff0deec",
      "timestamp": "2025-05-07T16:20:38Z",
      "to_account_hash": "1856e4a0b23c70b64e4509987680de0d99145fa0cdc71ad9b78760e18ff0deec",
      "to_purse": "uref-e3326e734dfec40c935c4f3080fa2dac075c11b296a9d9a699239e3e4a675368-004",
      "transfer_index": 2,
      "transform_key": "0000000000000000000000000000000000000000000000000000000000000000"
    },
    {
      "amount": "50000000000",
      "block_height": 4949861,
      "deploy_hash": "a5ba91a49b5d792327de3eb8da39ccf7b363bab3aa4be76d83d4d74c114abc5e",
      "from_purse": "uref-0779642a7206cd969ff0249ba79e8dbce0fabee4e3aad5e3fb97a51207323dbc-007",
      "id": 0,
      "initiator_account_hash": "1856e4a0b23c70b64e4509987680de0d99145fa0cdc71ad9b78760e18ff0deec",
      "timestamp": "2025-05-07T16:20:38Z",
      "to_account_hash": null,
      "to_purse": "uref-3e23c9ce6b9f3ee3f6bb032410fd729db56fb6f23b3c91a0a83bed28aaa38a17-007",
      "transfer_index": 1,
      "transform_key": "0000000000000000000000000000000000000000000000000000000000000000"
    },
    ...
    {
      "amount": "50000000000",
      "block_height": 4949840,
      "deploy_hash": "504e2a6c67a047b78ffaed68a587388fe5eee3ea3a85efb365e5c7224d7bddc3",
      "from_purse": "uref-0779642a7206cd969ff0249ba79e8dbce0fabee4e3aad5e3fb97a51207323dbc-007",
      "id": 0,
      "initiator_account_hash": "1856e4a0b23c70b64e4509987680de0d99145fa0cdc71ad9b78760e18ff0deec",
      "timestamp": "2025-05-07T16:14:57Z",
      "to_account_hash": null,
      "to_purse": "uref-3e23c9ce6b9f3ee3f6bb032410fd729db56fb6f23b3c91a0a83bed28aaa38a17-007",
      "transfer_index": 1,
      "transform_key": "0000000000000000000000000000000000000000000000000000000000000000"
    }
  ],
  "item_count": 902,
  "page_count": 91
}

Last updated