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

ParameterTypeDescriptionRequired
page_sizeintegerNumber of results per page. Default: 10No
page_tokenstringToken for fetching the next page of resultsNo

Response

Fields

FieldTypeDescription
movementsarrayList of margin movements
next_page_tokenstringToken for fetching the next page of results, null if no more pages

Movement Object

FieldTypeDescription
idstringUnique identifier for the movement
typestringType of movement. Values: DEPOSIT, WITHDRAWAL
amountstringAmount moved
currencystringCurrency code
created_atstringTimestamp 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="
}