Returns NFTs of an account
GET/nfts_by_owner/:account
This method queries for all NFTs that are owned by a particular address. It returns basic collection info and some metadata fields.
Request
Path Parameters
account stringrequired
The required account address
Responses
- 200
- 405
- 500
successful operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- ]
- ]
data object[]
An array of items from type NFT
id string
The identifier of this NFT
token hex string
The token in hex string format
owner address
The owner of the NFT
minter address
The address which minted the NFT
collection address
The collection to which this NFT belongs to
[
{
"data": [
{
"id": "string",
"token": "string",
"owner": "string",
"minter": "string",
"collection": "string"
}
]
}
]
Method not allowed
Internal server error
Loading...