Interface INFTsApiGetOwnershipTokensRequest

interface INFTsApiGetOwnershipTokensRequest {
    allPages?: boolean;
    blockchainDescriptor?: GetOwnershipTokensBlockchainDescriptorEnum;
    collectionIds?: string;
    ids?: string;
    ncwAccountIds?: string;
    order?: GetOwnershipTokensOrderEnum;
    pageCursor?: string;
    pageSize?: number;
    search?: string;
    sort?: GetOwnershipTokensSortEnum[];
    spam?: GetOwnershipTokensSpamEnum;
    status?: GetOwnershipTokensStatusEnum;
    vaultAccountIds?: string;
}

Hierarchy

  • Omit<NFTsApiGetOwnershipTokensRequest, "ncwId" | "walletType">
    • INFTsApiGetOwnershipTokensRequest

Properties

allPages?: boolean
blockchainDescriptor?: GetOwnershipTokensBlockchainDescriptorEnum

Blockchain descriptor filter

NFTsApiGetOwnershipTokens

collectionIds?: string

A comma separated list of collection IDs. Up to 100 are allowed in a single request.

NFTsApiGetOwnershipTokens

ids?: string

A comma separated list of NFT IDs. Up to 100 are allowed in a single request.

NFTsApiGetOwnershipTokens

ncwAccountIds?: string

A comma separated list of Non-Custodial account IDs. Up to 100 are allowed in a single request. This field will be ignored when walletType=VAULT_ACCOUNT or ncwId is not provided.

NFTsApiGetOwnershipTokens

order?: GetOwnershipTokensOrderEnum

Order direction, it can be `ASC` for ascending or `DESC` for descending

NFTsApiGetOwnershipTokens

pageCursor?: string

Page cursor to fetch

NFTsApiGetOwnershipTokens

pageSize?: number

Items per page (max 100)

NFTsApiGetOwnershipTokens

search?: string

Search owned tokens and their collections. Possible criteria for search: token name and id within the contract/collection, collection name, blockchain descriptor and name.

NFTsApiGetOwnershipTokens

sort?: GetOwnershipTokensSortEnum[]

Sort by param, it can be one param or a list of params separated by comma

NFTsApiGetOwnershipTokens

spam?: GetOwnershipTokensSpamEnum

Token ownership spam status.

NFTsApiGetOwnershipTokens

status?: GetOwnershipTokensStatusEnum

Token ownership status

NFTsApiGetOwnershipTokens

vaultAccountIds?: string

A comma separated list of Vault Account IDs. Up to 100 are allowed in a single request. This field will be ignored when walletType=END_USER_WALLET or ncwId is provided.

NFTsApiGetOwnershipTokens