List Order

Get Order List

GET https://api.abcc.com/api/v1/exchange/orders

Query Parameters

NameTypeDescription

per_page

string

Return number per page (default is 10)

page

string

Page code (Default is 1)

direction

string

ASC ascending order DESC descending order (default is DESC)

order_by

string

Sorted field id/price/volume (Default is id)

side

string

state

string

market_code

string

signature

string

access_key

string

tonce

string

Timestamp of the current time in milliseconds (Unix epoch)

{
	"meta": {
		"page": 1,
		"per_page": 1,
		"total_count": 58
	},
	"orders": [{
		"id": 4936589,
		"created_at": "2021-08-12T06:44:05Z",
		"market_code": "btcusdt",
		"side": "sell",
		"state": "wait",
		"ord_type": "limit",
		"price": "45125.98",
		"avg_price": "0.0",
		"volume": "0.000113",
		"remaining_volume": "0.000113",
		"executed_volume": "0.0",
		"trades_count": 0
	}
}

OUTPUT EXPLANATION

Parameter

Type

Explanation

id

Integer

ID

created_at

String

order time

market_code

String

The only code for the market

side

String

Buy and sell type

state

String

status

ord_type

String

Order type

price

String

Order price

avg_price

String

The average price of transactions

volume

String

Initial pending order volume

remaining_volume

String

The remaining amount of pending orders

executed_volume

String

Executed pending order volume

trades_count

Integer

Number of transactions

SIDE

Parameter

Type

Explanation

buy

String

buy

sell

String

sell

STATE

Parameter

Type

Explanation

wait

String

Pending order

done

String

Completed transaction

cancel

String

Canceled

ORD_TYPE

Parameter

Type

Explanation

limit

String

Limit order

market

String

Market order

Last updated