Get Transfers By Block

Get transfers of NFTs given a block number or block hash.

Get Transfers By Block

get

Get transfers of NFTs given a block number or block hash.

Query parameters
cursorstringOptional

The cursor returned in the previous response (used for getting the next page).

Default: ""
limitintegerOptional

The desired page size of the result.

Default: 10
chainall ofRequired

The chain to query

string · enumOptional

An enumeration.

Possible values:
formatall ofOptional

The format of the token ID

Default: decimal
string · enumOptional

An enumeration.

Possible values:
block_number_or_hashstringRequired

The block number or block hash

Responses
200
Successful Response
application/json
get
GET /api/transfers/by_block?chain=eth&block_number_or_hash=text HTTP/1.1
Host: 
Accept: */*
{
  "status": "SYNCED",
  "total": 0,
  "page": 0,
  "page_size": 0,
  "cursor": "",
  "result": [
    {
      "block_number": "text",
      "block_timestamp": "text",
      "block_hash": "text",
      "log_index": 1,
      "transaction_hash": "text",
      "transaction_index": 1,
      "transaction_type": "text",
      "contract_type": "text",
      "token_address": "",
      "token_id": "",
      "from_address": "",
      "to_address": "",
      "amount": "",
      "value": "",
      "operator": ""
    }
  ]
}

Last updated