Interface AssetsApiListAssetsRequest

interface AssetsApiListAssetsRequest {
    pageSize?: number;
    cursor?: string;
    orderBy?: "updated_at" | "name";
    direction?: string;
    user?: string;
    status?:
        | "eth"
        | "imx"
        | "preparing_withdrawal"
        | "withdrawable"
        | "burned";
    name?: string;
    metadata?: string;
    sellOrders?: boolean;
    buyOrders?: boolean;
    includeFees?: boolean;
    collection?: string;
    updatedMinTimestamp?: string;
    updatedMaxTimestamp?: string;
    auxiliaryFeePercentages?: string;
    auxiliaryFeeRecipients?: string;
}

Hierarchy

  • AssetsApiListAssetsRequest
    • AssetsApiListAssetsRequest

Properties

pageSize?: number

Page size of the result

AssetsApiListAssets

cursor?: string

Cursor

AssetsApiListAssets

orderBy?: "updated_at" | "name"

Property to sort by

AssetsApiListAssets

direction?: string

Direction to sort (asc/desc)

AssetsApiListAssets

user?: string

Comma separated list of ethereum address of the users who own these assets

AssetsApiListAssets

status?:
    | "eth"
    | "imx"
    | "preparing_withdrawal"
    | "withdrawable"
    | "burned"

Status of these assets

AssetsApiListAssets

name?: string

Name of the asset to search

AssetsApiListAssets

metadata?: string

URL JSON-encoded metadata filters for these assets. Javascript example: encodeURI(JSON.stringify({'proto':['1147'],'quality':['Meteorite']}))

AssetsApiListAssets

sellOrders?: boolean

Set flag to true to fetch an array of sell order details with accepted status associated with the asset

AssetsApiListAssets

buyOrders?: boolean

Set flag to true to fetch an array of buy order details with accepted status associated with the asset

AssetsApiListAssets

includeFees?: boolean

Set flag to include fees associated with the asset

AssetsApiListAssets

collection?: string

Comma separated list of the collections contract address

AssetsApiListAssets

updatedMinTimestamp?: string

Minimum timestamp for when these assets were last updated, in ISO 8601 UTC format. Example: '2022-05-27T00:10:22Z'

AssetsApiListAssets

updatedMaxTimestamp?: string

Maximum timestamp for when these assets were last updated, in ISO 8601 UTC format. Example: '2022-05-27T00:10:22Z'

AssetsApiListAssets

auxiliaryFeePercentages?: string

Comma separated string of fee percentages that are to be paired with auxiliary_fee_recipients

AssetsApiListAssets

auxiliaryFeeRecipients?: string

Comma separated string of fee recipients that are to be paired with auxiliary_fee_percentages

AssetsApiListAssets