Get all NFTs currently held by a specific address
Authorization required to use this endpoint
To get your API key, follow the instruction here.
The Address Inventory endpoint assists you with data retrieval on all the NFTs that a specific EOA address currently owns. As the results are sorted in descending order, the most recently acquired NFT will appear first. You can narrow your search by adding a contract address as a query parameter. Additionally, the metadata
and sale_price
information can be included by setting their field values to true
.
A successful request to the endpoint will return a JSON response with the data on currently owned NFTs marked as items. The items will contain their id
, token_id
, collection
and transfer
data, along with metadata
and sale_price
information if you choose to include them in your response. The transfer
data will consist of the following fields: sender
, block_number
, block_timestamp
, and transaction_hash
.
The cURL request shown below can give you the gist of how the endpoint operates. Be sure to replace YOUR_API_KEY
with your actual API key.
curl --location 'https://api.parsiq.net/nft/eip155-1/v1/0xb6042f438D63181E7E220A72e9fff845062EB48d/inventory' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY'