Transaction Records

Get Transaction Records

GET https://api.abcc.com/api/v1/members/trades

Query Parameters

NameTypeDescription

per_page

string

page

string

direction

string

start_id

string

end_id

string

start_time

string

end_time

string

market_code

string

signature

string

tonce

string

access_key

boolean

{
	"meta": {
		"page": 1,
		"per_page": 10,
		"total_count": 70
	},
	"trades": [{
			"id": 75,
			"price": "0.42",
			"volume": "100.0",
			"funds": "42.0",
			"market_code": "ethbtc",
			"created_at": "2018-09-12T01:58:50Z",
			"side": "bid",
			"order_id": 115,
			"fee": "0.042"

		},
		{
			"id": 74,
			"price": "0.42",
			"volume": "100.0",
			"funds": "42.0",
			"market_code": "ethbtc",
			"created_at": "2018-09-12T01:58:50Z",
			"side": "ask",
			"order_id": 115,
			"fee": "0.042"

		}
	]
}

OUTPUT EXPLANATION

Script

Type

Explain

id

Integer

ID

price

String

Order price

volume

String

Initial pending order volume

funds

String

Transaction amount

market_code

String

Market pair

created_at

String

The remaining amount of pending orders

side

String

Buy and sell type

order_id

Integer

Delegation ID

fee

String

Renewal

SIDE

Script

Type

Explain

buy

String

Buy

sell

String

Sell

Last updated