Interface OrdersApiListOrdersV3Request

interface OrdersApiListOrdersV3Request {
    pageSize?: number;
    cursor?: string;
    orderBy?:
        | "updated_at"
        | "created_at"
        | "expired_at"
        | "sell_quantity"
        | "buy_quantity"
        | "buy_quantity_with_fees";
    direction?: string;
    user?: string;
    status?:
        | "active"
        | "filled"
        | "cancelled"
        | "expired"
        | "inactive";
    minTimestamp?: string;
    maxTimestamp?: string;
    updatedMinTimestamp?: string;
    updatedMaxTimestamp?: string;
    buyTokenType?: string;
    buyTokenId?: string;
    buyAssetId?: string;
    buyTokenAddress?: string;
    buyTokenName?: string;
    buyMinQuantity?: string;
    buyMaxQuantity?: string;
    buyMetadata?: string;
    sellTokenType?: string;
    sellTokenId?: string;
    sellAssetId?: string;
    sellTokenAddress?: string;
    sellTokenName?: string;
    sellMinQuantity?: string;
    sellMaxQuantity?: string;
    sellMetadata?: string;
    auxiliaryFeePercentages?: string;
    auxiliaryFeeRecipients?: string;
    includeFees?: boolean;
}

Hierarchy

  • OrdersApiListOrdersV3Request
    • OrdersApiListOrdersV3Request

Properties

pageSize?: number

Page size of the result

OrdersApiListOrdersV3

cursor?: string

Cursor

OrdersApiListOrdersV3

orderBy?:
    | "updated_at"
    | "created_at"
    | "expired_at"
    | "sell_quantity"
    | "buy_quantity"
    | "buy_quantity_with_fees"

Property to sort by

OrdersApiListOrdersV3

direction?: string

Direction to sort (asc/desc)

OrdersApiListOrdersV3

user?: string

Ethereum address of the user who submitted this order

OrdersApiListOrdersV3

status?:
    | "active"
    | "filled"
    | "cancelled"
    | "expired"
    | "inactive"

Status of this order

OrdersApiListOrdersV3

minTimestamp?: string

Filter orders to include those with created_at timestamps after this time, in ISO 8601 UTC format. Example: '2022-05-27T00:10:22Z'

OrdersApiListOrdersV3

maxTimestamp?: string

Filter orders to include those with created_at timestamps before this time, in ISO 8601 UTC format. Example: '2022-05-27T00:10:22Z'

OrdersApiListOrdersV3

updatedMinTimestamp?: string

Filter orders to include those with updated_at timestamps after this time, in ISO 8601 UTC format. Example: '2022-05-27T00:10:22Z'

OrdersApiListOrdersV3

updatedMaxTimestamp?: string

Filter orders to include those with updated_at timestamps before this time, in ISO 8601 UTC format. Example: '2022-05-27T00:10:22Z'

OrdersApiListOrdersV3

buyTokenType?: string

Token type of the asset this order buys

OrdersApiListOrdersV3

buyTokenId?: string

ERC721 Token ID of the asset this order buys

OrdersApiListOrdersV3

buyAssetId?: string

Internal IMX ID of the asset this order buys

OrdersApiListOrdersV3

buyTokenAddress?: string

Token address of the asset this order buys

OrdersApiListOrdersV3

buyTokenName?: string

Token name of the asset this order buys

OrdersApiListOrdersV3

buyMinQuantity?: string

Min quantity for the asset this order buys

OrdersApiListOrdersV3

buyMaxQuantity?: string

Max quantity for the asset this order buys

OrdersApiListOrdersV3

buyMetadata?: string

JSON-encoded metadata filters for the asset this order buys

OrdersApiListOrdersV3

sellTokenType?: string

Token type of the asset this order sells

OrdersApiListOrdersV3

sellTokenId?: string

ERC721 Token ID of the asset this order sells

OrdersApiListOrdersV3

sellAssetId?: string

Internal IMX ID of the asset this order sells

OrdersApiListOrdersV3

sellTokenAddress?: string

Token address of the asset this order sells

OrdersApiListOrdersV3

sellTokenName?: string

Token name of the asset this order sells

OrdersApiListOrdersV3

sellMinQuantity?: string

Min quantity for the asset this order sells

OrdersApiListOrdersV3

sellMaxQuantity?: string

Max quantity for the asset this order sells

OrdersApiListOrdersV3

sellMetadata?: string

JSON-encoded metadata filters for the asset this order sells

OrdersApiListOrdersV3

auxiliaryFeePercentages?: string

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

OrdersApiListOrdersV3

auxiliaryFeeRecipients?: string

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

OrdersApiListOrdersV3

includeFees?: boolean

Set flag to true to include fee object for orders

OrdersApiListOrdersV3