curl --request GET \
--url 'https://openapi.msu.io/v1rc1/accounts/{walletAddress}/collection' \
--header 'Content-Type: application/json' \
--header 'x-nxopen-api-key: YOUR_API_KEY'
const response = await fetch('https://openapi.msu.io/v1rc1/accounts/{walletAddress}/collection', {
method: 'GET',
headers: {
'Content-Type': 'application/json',
'x-nxopen-api-key': 'YOUR_API_KEY'
}
});
const data = await response.json();
import requests
url = "https://openapi.msu.io/v1rc1/accounts/{walletAddress}/collection"
headers = {
"x-nxopen-api-key": "YOUR_API_KEY"
}
response = requests.get(url, headers=headers)
data = response.json()
{
"success": true,
"data": {
"collection": [],
"paginationResult": {},
"traceId": "string"
}
}
Accounts
Get wallet collection list
Retrieve a list of collection owned by a wallet address
GET
/
v1rc1
/
accounts
/
{walletAddress}
/
collection
curl --request GET \
--url 'https://openapi.msu.io/v1rc1/accounts/{walletAddress}/collection' \
--header 'Content-Type: application/json' \
--header 'x-nxopen-api-key: YOUR_API_KEY'
const response = await fetch('https://openapi.msu.io/v1rc1/accounts/{walletAddress}/collection', {
method: 'GET',
headers: {
'Content-Type': 'application/json',
'x-nxopen-api-key': 'YOUR_API_KEY'
}
});
const data = await response.json();
import requests
url = "https://openapi.msu.io/v1rc1/accounts/{walletAddress}/collection"
headers = {
"x-nxopen-api-key": "YOUR_API_KEY"
}
response = requests.get(url, headers=headers)
data = response.json()
{
"success": true,
"data": {
"collection": [],
"paginationResult": {},
"traceId": "string"
}
}
Path parameters
string
required
The wallet address to query
Query parameters
string
Last key for pagination
integer
Number of items per page
string
Request trace ID
Response
boolean
Indicates if the request was successful
object
curl --request GET \
--url 'https://openapi.msu.io/v1rc1/accounts/{walletAddress}/collection' \
--header 'Content-Type: application/json' \
--header 'x-nxopen-api-key: YOUR_API_KEY'
const response = await fetch('https://openapi.msu.io/v1rc1/accounts/{walletAddress}/collection', {
method: 'GET',
headers: {
'Content-Type': 'application/json',
'x-nxopen-api-key': 'YOUR_API_KEY'
}
});
const data = await response.json();
import requests
url = "https://openapi.msu.io/v1rc1/accounts/{walletAddress}/collection"
headers = {
"x-nxopen-api-key": "YOUR_API_KEY"
}
response = requests.get(url, headers=headers)
data = response.json()
{
"success": true,
"data": {
"collection": [],
"paginationResult": {},
"traceId": "string"
}
}
Notes
- Pagination is supported, with range of 1 to 200 items per page
- Default pagination: pageSize=10

