curl --request GET \
--url https://staging.apimonaco.xyz/api/v1/accounts/trades \
--header 'X-Monaco-Signature: <api-key>'import requests
url = "https://staging.apimonaco.xyz/api/v1/accounts/trades"
headers = {"X-Monaco-Signature": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Monaco-Signature': '<api-key>'}};
fetch('https://staging.apimonaco.xyz/api/v1/accounts/trades', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://staging.apimonaco.xyz/api/v1/accounts/trades",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Monaco-Signature: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://staging.apimonaco.xyz/api/v1/accounts/trades"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Monaco-Signature", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://staging.apimonaco.xyz/api/v1/accounts/trades")
.header("X-Monaco-Signature", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://staging.apimonaco.xyz/api/v1/accounts/trades")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Monaco-Signature"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"trades": [
{
"tradeId": "<string>",
"orderId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"positionId": "<string>",
"tradingPairId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"side": "<string>",
"price": "<string>",
"quantity": "<string>",
"liquidityRole": "<string>",
"fee": "<string>",
"realizedPnl": "<string>",
"timestamp": "<string>"
}
],
"page": "1",
"pageSize": "20",
"total": "150",
"totalPages": "8",
"nextPageToken": "<string>"
}Get user trade history
Get user trades.
Get the authenticated user’s trade history with pagination. Returns trades where the user was either maker or taker, with user-specific side and fee information.
curl --request GET \
--url https://staging.apimonaco.xyz/api/v1/accounts/trades \
--header 'X-Monaco-Signature: <api-key>'import requests
url = "https://staging.apimonaco.xyz/api/v1/accounts/trades"
headers = {"X-Monaco-Signature": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Monaco-Signature': '<api-key>'}};
fetch('https://staging.apimonaco.xyz/api/v1/accounts/trades', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://staging.apimonaco.xyz/api/v1/accounts/trades",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Monaco-Signature: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://staging.apimonaco.xyz/api/v1/accounts/trades"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Monaco-Signature", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://staging.apimonaco.xyz/api/v1/accounts/trades")
.header("X-Monaco-Signature", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://staging.apimonaco.xyz/api/v1/accounts/trades")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Monaco-Signature"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"trades": [
{
"tradeId": "<string>",
"orderId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"positionId": "<string>",
"tradingPairId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"side": "<string>",
"price": "<string>",
"quantity": "<string>",
"liquidityRole": "<string>",
"fee": "<string>",
"realizedPnl": "<string>",
"timestamp": "<string>"
}
],
"page": "1",
"pageSize": "20",
"total": "150",
"totalPages": "8",
"nextPageToken": "<string>"
}Authorizations
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
Deprecated: page number for legacy offset pagination (1-indexed). Use pageToken cursor pagination instead.
1 <= x <= 10000Items per page (max: 100 in page-number mode; up to 1000 when pageToken is present)
1 <= x <= 1000Trading pair identifier (UUID)
1Pagination cursor with three distinct states:
- Omitted: legacy page-number pagination via
page, limited to recent history once the archive window is enabled. - Empty string (""): start a cursor walk with no prior position, from the newest row (this endpoint always sorts newest-first).
- Non-empty: an opaque cursor from a previous response's
next_page_token; results resume immediately after that position.
In either cursor-walk state (empty or non-empty), page is ignored, the
response omits exact totals (total/total_pages/page are 0), and results
cover full trade history — hot and archived rows merged — unlike
page-number mode, which only ever sees recent history. Clients that need
complete trade history must use the cursor form (start with an empty
string, then follow next_page_token) rather than page. Filters must
match the request that produced the token.
Response
OK
Show child attributes
Show child attributes
Deprecated: current page number (legacy offset mode only; 0 in cursor mode)
"1"
Items per page
"20"
Deprecated: total matching trades (legacy page-number mode only; 0 in cursor mode). Exact up to pageSize x 10,000 rows and saturates there. Use pageToken cursor pagination instead.
"150"
Deprecated: total pages at this pageSize (legacy page-number mode only; 0 in cursor mode). Exact up to 10,000 and saturates there. Use pageToken cursor pagination instead.
"8"
Cursor for the next page. Empty on every page-number (legacy) response —
page-number mode never mints a token, full page or not, since resuming
a client from a legacy-minted position could silently strand archived
history newer than wherever that page happened to end. To walk full
history, start a cursor-mode request with page_token present but
empty (""); from then on the token is present whenever that page
returned any rows (AIP-158 "maybe more" semantics), not only when the
page is exactly full. Empty only when a cursor-mode page returned zero
rows, which is the sole proof the walk is exhausted; a non-empty token
does not guarantee further results, so keep following it until a
response returns zero rows and an empty token. The two modes never
bridge: a page-number response's empty token is not "done," it simply
means page-number mode does not participate in cursor continuation.
Was this page helpful?

