> For the complete documentation index, see [llms.txt](https://abcc-docs.gitbook.io/api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://abcc-docs.gitbook.io/api/account/transaction-records.md).

# Transaction Records

## Get Transaction Records

<mark style="color:blue;">`GET`</mark> `https://api.abcc.com/api/v1/members/trades`

#### Query Parameters

| Name         | Type    | Description |
| ------------ | ------- | ----------- |
| 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 |             |

{% tabs %}
{% tab title="200 Data successfully retrieved." %}

```
{
	"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"

		}
	]
}
```

{% endtab %}
{% endtabs %}

**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    |
