v1

latestOpenAPI 3.1.02026-07-2411205.0 MB

Get Transfers

get/api/transfer/v1

Query parameters

network'finney' | 'nakamoto' | 'kusanagi'

Finney is the current network. Nakamoto and kusanagi are historical versions.

addressstring

SS58 or hex format

fromstring

SS58 or hex format

tostring

SS58 or hex format

transaction_hashstring

hash of the transaction

extrinsic_idstring

The extrinsic ID

amount_minstring

min transaction amount in rao

amount_maxstring

max transaction amount in rao

block_numberinteger

exact block number

block_startinteger

block number for start of range

block_endinteger

block number for end of range

timestamp_startinteger

Start of timestamp range in Unix timestamp (seconds since 1970-01-01) (inclusive)

timestamp_endinteger

Start of timestamp range in Unix timestamp (seconds since 1970-01-01) (inclusive)

pageinteger

The page number of the response.

limitinteger

The number of responses. max is 200.

order'amount_asc' | 'amount_desc' | 'block_number_asc' | 'block_number_desc' | 'timestamp_asc' | 'timestamp_desc'

Response

200

Example response

{
  "pagination": {
    "current_page": 1,
    "per_page": 50,
    "total_items": 3126936,
    "total_pages": 62539,
    "next_page": 2
  },
  "data": [
    {
      "id": "finney-5011620-0017",
      "to": {
        "ss58": "5FqBL928choLPmeFz5UVAvonBD5k7K2mZSXVC9RkFzLxoy2s",
        "hex": "0xa69ffb8d15b780999fc0ae940aabf71073498ab19a1561a4c4b473ebbe8a336a"
      },
      "from": {
        "ss58": "5HmArgNJrnzR1QuMJGNXEE1bTixsEAtucnhoN6inzRfB1cmS",
        "hex": "0xfc09dfc989a44fcdea0fb82622ed69fffe1bc53478e7e1264838a7b85c84345f"
      },
      "network": "finney",
      "block_number": 5011620,
      "timestamp": "2025-02-26T13:57:36Z",
      "amount": "57855024736",
      "fee": "135264",
      "transaction_hash": "0xbe46e30347cac35f0de27ad47c1a3892de2e32b741da73db754d6047b2a6e4e9",
      "extrinsic_id": "5011620-0008"
    }
  ]
}