Returns NFTs of an account
GEThttps://kollection.app/api/v1/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 [
- ]
data object[]
[
{
"data": [
{
"id": "string",
"token": "string",
"owner": "string",
"minter": "string",
"collection": "string"
}
]
}
]
Method not allowed
Internal server error
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X GET 'https://kollection.app/api/v1/nfts_by_owner/:account' \
-H 'Accept: application/json'
ResponseClear