List application orders
curl --request GET \
--url https://staging.apimonaco.xyz/api/v1/applications/orders \
--header 'x-server-key: <api-key>'import requests
url = "https://staging.apimonaco.xyz/api/v1/applications/orders"
headers = {"x-server-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-server-key': '<api-key>'}};
fetch('https://staging.apimonaco.xyz/api/v1/applications/orders', 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/applications/orders",
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-server-key: <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/applications/orders"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-server-key", "<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/applications/orders")
.header("x-server-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://staging.apimonaco.xyz/api/v1/applications/orders")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-server-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"orders": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"userId": "123e4567-e89b-12d3-a456-426614174000",
"tradingPairId": "456e7890-e12b-12d3-a456-426614174000",
"orderType": "LIMIT",
"side": "BUY",
"price": "35000.00",
"quantity": "0.5",
"quantityRaw": "500000000",
"filledQuantity": "0.2",
"filledQuantityRaw": "200000000",
"averageFillPrice": "35050.00",
"status": "SUBMITTED",
"tradingMode": "SPOT",
"timeInForce": "GTC",
"createdAt": "2023-11-13T10:30:00Z",
"updatedAt": "2023-11-13T10:35:00Z"
}
],
"total": 150,
"page": 1,
"pageSize": 20,
"totalPages": 8
}Applications (Backend)
List application orders
List application orders.
Returns a paginated list of all orders for this application. Requires backend authentication via secret key.
GET
/
api
/
v1
/
applications
/
orders
List application orders
curl --request GET \
--url https://staging.apimonaco.xyz/api/v1/applications/orders \
--header 'x-server-key: <api-key>'import requests
url = "https://staging.apimonaco.xyz/api/v1/applications/orders"
headers = {"x-server-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-server-key': '<api-key>'}};
fetch('https://staging.apimonaco.xyz/api/v1/applications/orders', 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/applications/orders",
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-server-key: <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/applications/orders"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-server-key", "<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/applications/orders")
.header("x-server-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://staging.apimonaco.xyz/api/v1/applications/orders")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-server-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"orders": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"userId": "123e4567-e89b-12d3-a456-426614174000",
"tradingPairId": "456e7890-e12b-12d3-a456-426614174000",
"orderType": "LIMIT",
"side": "BUY",
"price": "35000.00",
"quantity": "0.5",
"quantityRaw": "500000000",
"filledQuantity": "0.2",
"filledQuantityRaw": "200000000",
"averageFillPrice": "35050.00",
"status": "SUBMITTED",
"tradingMode": "SPOT",
"timeInForce": "GTC",
"createdAt": "2023-11-13T10:30:00Z",
"updatedAt": "2023-11-13T10:35:00Z"
}
],
"total": 150,
"page": 1,
"pageSize": 20,
"totalPages": 8
}Authorizations
Query Parameters
Page number (1-indexed)
Required range:
1 <= x <= 10000Items per page (max 100)
Required range:
1 <= x <= 100Order status (single value or comma-separated list)
Minimum string length:
1User identifier (UUID)
Minimum string length:
1Trading pair identifier (UUID)
Minimum string length:
1Order side
Available options:
BUY, SELL Minimum string length:
1Order type
Available options:
LIMIT, MARKET, STOP_LOSS, TAKE_PROFIT, STOP_LIMIT, TRAILING_STOP Minimum string length:
1Response
OK
Show child attributes
Show child attributes
Matching orders. Exact up to 10,000 pages of the requested page size (page_size x 10,000 rows) and saturates there, so an application with more matching orders than the listing can page through reads the cap, not its lifetime total.
Example:
150
Current page number
Example:
1
Items per page
Example:
20
Number of pages at the requested page size. Exact up to 10,000 and saturates there, the last page this listing can reach.
Example:
8
Was this page helpful?

