Get Margin Transfer History

API Description

Retrieves margin transfer history for positions. This endpoint provides detailed information about all margin additions and removals for positions, including the amount, asset type, and block information.

HTTP Request

GET /v5/position/transfer/list

Request Parameters

Parameter
Type
Required
Description

symbol

string

No

Trading pair symbol (e.g., BTC-USDM-EMG)

startTime

string

No

Start time (ms)

endTime

string

No

End time (ms)

limit

number

No

Number of records (max 100)

cursor

string

No

Cursor for pagination

Response Parameters

Parameter
Type
Description

instrumentAddrress

string

Contract address of the instrument

symbol

string

Trading pair symbol

expiry

number

Expiry timestamp (0 for perpetual)

type

string

Transfer type (ADD_MARGIN, REMOVE_MARGIN)

amount

string

Transfer amount

asset

string

Asset symbol (e.g., USDM)

blockInfo

object

Block information

-> height

number

Block height

-> timestamp

number

Block timestamp

Request Example

cURL

JavaScript (Fetch)

Python (requests)

Response Example

Success Response

Error Response

Notes

  • This endpoint requires authentication

  • Returns margin transfer history for position management

  • Supports pagination with cursor parameter

  • Maximum 100 records per request

  • Rate limit: 120 requests per minute

Last updated