Vinci NFT API
SDKDocument Hub
  • Introduction
  • Get Started
  • NFT API Endpoints
    • Get NFTs By Wallet
    • Get NFTs By Contract
    • Search NFTs
    • Get NFT Metadata
    • Get NFT Floor Price
    • Get Owners By Contract
    • Get Owners By Token Id
    • Get Collections By Wallet
    • Get Collection Metadata
    • Get Transfers By Wallet
    • Get Transfers By Contract
    • Get Transfers By Block
    • Get Transfers From A Block To A Block
Powered by GitBook
On this page
  1. NFT API Endpoints

Get Transfers By Wallet

Get transfers of NFTs given the wallet and other parameters.

PreviousGet Collection MetadataNextGet Transfers By Contract

Last updated 2 years ago

Get Transfers By Wallet

get

Get transfers of NFTs given the wallet and other parameters.

Query parameters
from_blockintegerOptional

The minimum block number from which to start the search

Default: 0
to_blockintegerOptional

The maximum block number from which to end the search

Default: 0
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:
addressstringRequired

The address

directionall ofOptional

The transfer direction

Default: both
string · enumOptional

An enumeration.

Possible values:
Responses
200
Successful Response
application/json
404
ErrorMessage
application/json
422
HTTPValidationError
application/json
get
GET /api/transfers/by_wallet?chain=eth&address=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": ""
    }
  ]
}