Get Transfers By Contract

Get transfers of NFTs for a given contract and other parameters.

Get Transfers By Contract

Get transfers of NFTs for a given contract and other parameters.

GET/api/transfers/by_contract
Query parameters
Response

Successful Response

Body
statusall of

The syncing status of the address [SYNCING/SYNCED]

totalTotal

The total number of matches for this query

pagePage

The current page of the result

page_sizePage Size

The number of results per page

cursorCursor

The cursor to get to the next page

result*Result
Request
const response = await fetch('/api/transfers/by_contract', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "status": {},
  "cursor": "text",
  "result": [
    {
      "block_number": "text",
      "block_timestamp": "text",
      "block_hash": "text",
      "transaction_hash": "text",
      "transaction_type": "text",
      "contract_type": "text",
      "token_address": "text",
      "token_id": "text",
      "from_address": "text",
      "to_address": "text",
      "amount": "text",
      "value": "text",
      "operator": "text"
    }
  ]
}

Last updated