v1

latestOpenAPI 3.0.0raw.githubusercontent.com2026-04-107095124.5 KB
Profile management endpoints

Update NFT preferences for a domain

The POST call can be used to update NFT gallery preferences for addresses resolving to the domain. Authentication is required using domain owner signature.

post/user/{domain}/nfts

Path parameters

domainstring required

The domain name to query profile data

Headers

x-auth-domainstring required

The domain to authorize

x-auth-expiresstring required

The expiration time of the signature

x-auth-signaturestring required

The signature generating using domain owner private key

Request body

symbolstring

Crypto symbol associated with the NFT gallery

addressstring

Wallet address associated with the NFT gallery

publicboolean

Indicates whether the NFT gallery is visible to the public

showAllItemsboolean

Indicates whether NFTs in the gallery are shown by default

ordernumber

Order preference in relation to other NFT galleries (higher indicates first preference)

Example request

[
  {
    "symbol": "ETH",
    "address": "cd0dadab45baf9a06ce1279d1342ecc3f44845af",
    "public": true,
    "showAllItems": true,
    "order": 10,
    "items": [
      {
        "mint": "a9a6a3626993d487d2dbda3173cf58ca1a9d9e9f",
        "public": true
      }
    ]
  }
]

Response

Update successful