{// Cursor for the next page. To get the next page of objects,// pass this value in as the cursor query parameter.// If null, there is no next page. cursor: string |null, data:Array<{// Owner portion of OrderID (see Core Concepts/OrderID). owner:string,// Counter portion of OrderID (see Core Concepts/OrderID). counter:integer,// Fully qualified type string for the instrument coin of this order. // See Core Concepts/Typed Parameters. instrument_type:string,// Fully qualified type string for the quote coin of this order.// See Core Concepts/Typed Parameters. quote_type:string,// Optional metadata for order provided by user that placed it. client_order_id:string,// Decimal string representing original quantity of the order. original_qty:string,// Decimal string representing remaining quantity of the order. remaining_qty:string// See Data Models/Enums/CancelAgent. cancel_agent:CancelAgent,// See Data Models/Enums/OrderSide. side:OrderSide,// See Data Models/Enums/OrderStatus. status:OrderStatus,// See Data Models/Enums/OrderType. type:OrderType, }>,}
{// Response}
Get details about a specific order
GEThttps://api.ferum.xyz/order/{order_id}
Path Parameters
{// Response}
{// Owner portion of OrderID (see Core Concepts/OrderID). owner: string,// Counter portion of OrderID (see Core Concepts/OrderID). counter: integer,// Fully qualified type string for the instrument coin of this order. // See Core Concepts/Typed Parameters. instrument_type: string,// Fully qualified type string for the quote coin of this order.// See Core Concepts/Typed Parameters. quote_type: string,// Optional metadata for order provided by user that placed it. client_order_id: string,// Decimal string representing original quantity of the order. original_qty: string,// Decimal string representing remaining quantity of the order. remaining_qty: string// See Data Models/Enums/CancelAgent. cancel_agent: CancelAgent,// See Data Models/Enums/OrderSide. side: OrderSide,// See Data Models/Enums/OrderStatus. status: OrderStatus,// See Data Models/Enums/OrderType. type: OrderType,}
{// Cursor for the next page. To get the next page of objects,// pass this value in as the cursor query parameter.// If null, there is no next page. cursor: string |null, data:Array<{// Uniquely identifies this execution from other executions// for the same order. exec_counter:integer,// Refers to the order this execution is for.// Owner portion of OrderID (see Core Concepts/OrderID). order_owner:integer,// Refers to the order this execution is for.// Counter portion of OrderID (see Core Concepts/OrderID). order_counter:string,// Decimal string representing price for this execution. price:string,// Decimal string representing quantity for this execution. qty:string, }>,}