List Margin Funding Movements
Get a paginated list of margin movements for the authenticated user.
Endpoint URL
GET https://api.bitso.com/margin_trading/v1alpha/movements
Request
Query Parameters
| Parameter | Type | Description | Required |
|---|---|---|---|
page_size | integer | Number of results per page. Default: 10 | No |
page_token | string | Token for fetching the next page of results | No |
Response
Fields
| Field | Type | Description |
|---|---|---|
movements | array | List of margin movements |
next_page_token | string | Token for fetching the next page of results, null if no more pages |
Movement Object
| Field | Type | Description |
|---|---|---|
id | string | Unique identifier for the movement |
type | string | Type of movement. Values: DEPOSIT, WITHDRAWAL |
amount | string | Amount moved |
currency | string | Currency code |
created_at | string | Timestamp when the movement was created |
Payload Example
{
"movements": [
{
"id": "22c19e48-280d-4775-a9d9-b971f83cd09d",
"type": "DEPOSIT",
"amount": "1000.50",
"currency": "btc",
"created_at": "2025-12-03T10:15:30Z"
},
{
"id": "33d29f59-391e-5886-ba0a-c082194de0e",
"type": "WITHDRAWAL",
"amount": "500.25",
"currency": "btc",
"created_at": "2025-12-02T08:20:15Z"
}
],
"next_page_token": "eyJpZCI6IjMzZDI5ZjU5LTM5MWUtNTg4Ni1iYTBhLWMwODJnOTRkZTBlIiwib2Zmc2V0IjoxNX0="
}Updated about 20 hours ago
