Skip to main content
GET
Get user movements

Authorizations

X-Monaco-Signature
string
header
required

Ed25519 session-key request signing. Every authenticated request carries three headers: X-Monaco-PublicKey (64-char lowercase-hex session public key), X-Monaco-Timestamp (Unix milliseconds, within 30s of server time), and X-Monaco-Signature (hex ed25519 signature). The signature is over METHOD\npath?query\ntimestamp_ms\nSHA256_hex(body), where the body hash is the SHA-256 of the empty byte string when there is no body. Obtain the session keypair from POST /api/v1/auth/challenge followed by POST /api/v1/auth/verify.

Query Parameters

page
integer<uint32>

Page number (1-indexed)

Required range: 1 <= x <= 10000
pageSize
integer<uint32>
default:20

Items per page (max 100)

Required range: 1 <= x <= 100
transactionType
enum<string>

Transaction type

Available options:
DEPOSIT,
WITHDRAWAL,
TRADE,
FEE,
FUNDING,
LIQUIDATION,
INTEREST,
REWARD,
CHAIN_SYNC
Minimum string length: 1
entryType
enum<string>

Ledger entry type

Available options:
CREDIT,
DEBIT,
LOCK,
UNLOCK,
FEE
Minimum string length: 1
assetId
string<uuid>

Asset identifier (UUID)

Minimum string length: 1
orderBy
enum<string>
default:DESC

Sort direction for createdAt

Available options:
ASC,
DESC
Minimum string length: 1

Response

OK

movements
object[] | null
total
integer<uint32> | null

Total number of movements

Example:

150

page
integer<uint32> | null

Current page number

Example:

1

pageSize
integer<uint32> | null

Items per page

Example:

20

totalPages
integer<uint32> | null

Total number of pages

Example:

8