Skip to main content
GET
/
v1rc1
/
accounts
/
{walletAddress}
/
items
curl --request GET \
  --url 'https://openapi.msu.io/v1rc1/accounts/{walletAddress}/items?categoryNo=1&isOnSale=true' \
  --header 'Content-Type: application/json' \
  --header 'x-nxopen-api-key: YOUR_API_KEY'
{
  "success": true,
  "data": {
    "elements": [],
    "nextCursor": "string",
    "hasMore": false
  }
}

Path parameters

walletAddress
string
required
The wallet address to query

Query parameters

categoryNo
integer
Filter by category number
isOnSale
boolean
Filter by sale status
tokenName
string
Filter by token name
tokenId
string
Filter by token ID
cursor
string
Pagination cursor for next page

Response

success
boolean
Indicates if the request was successful
data
object
curl --request GET \
  --url 'https://openapi.msu.io/v1rc1/accounts/{walletAddress}/items?categoryNo=1&isOnSale=true' \
  --header 'Content-Type: application/json' \
  --header 'x-nxopen-api-key: YOUR_API_KEY'
{
  "success": true,
  "data": {
    "elements": [],
    "nextCursor": "string",
    "hasMore": false
  }
}

Notes

  • Pagination is supported, with range of 1 to 200 items per page
  • Default pagination: pageNo=1, pageSize=10