Trading Pairs
curl --request GET \
--url https://staging.apimonaco.xyz/api/v1/market/pairsimport requests
url = "https://staging.apimonaco.xyz/api/v1/market/pairs"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://staging.apimonaco.xyz/api/v1/market/pairs', 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/market/pairs",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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/market/pairs"
req, _ := http.NewRequest("GET", url, nil)
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/market/pairs")
.asString();require 'uri'
require 'net/http'
url = URI("https://staging.apimonaco.xyz/api/v1/market/pairs")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"tradingPairs": [
{
"baseAssetId": "456e7890-e12b-12d3-a456-426614174000",
"baseDecimals": 8,
"baseIconUrl": "https://cdn.0xmonaco.com/assets/btc.svg",
"baseToken": "BTC",
"baseTokenContract": "0x1234567890abcdef1234567890abcdef12345678",
"id": "123e4567-e89b-12d3-a456-426614174000",
"isActive": true,
"makerFeeBps": -2,
"marketType": "SPOT",
"maxOrderSize": "100.0",
"minOrderSize": "0.0001",
"quoteAssetId": "789e0123-e45b-12d3-a456-426614174000",
"quoteDecimals": 6,
"quoteIconUrl": "https://cdn.0xmonaco.com/assets/usdc.svg",
"quoteToken": "USDC",
"quoteTokenContract": "0x6a86da986797d59a839d136db490292cd560c131",
"symbol": "BTC/USDC",
"takerFeeBps": 10,
"tickSize": "0.01",
"minLeverage": "1",
"maxLeverage": "20",
"category": "crypto",
"quantityStepSize": "0.00001",
"baseAssetName": "Robinhood Markets",
"quoteAssetName": "USDC"
}
],
"page": 1,
"pageSize": 20,
"total": 50,
"totalPages": 3
}Market
Trading Pairs
Trading Pairs
Get paginated list of trading pairs with optional filtering by market type, base token, quote token, and active status.
GET
/
api
/
v1
/
market
/
pairs
Trading Pairs
curl --request GET \
--url https://staging.apimonaco.xyz/api/v1/market/pairsimport requests
url = "https://staging.apimonaco.xyz/api/v1/market/pairs"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://staging.apimonaco.xyz/api/v1/market/pairs', 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/market/pairs",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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/market/pairs"
req, _ := http.NewRequest("GET", url, nil)
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/market/pairs")
.asString();require 'uri'
require 'net/http'
url = URI("https://staging.apimonaco.xyz/api/v1/market/pairs")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"tradingPairs": [
{
"baseAssetId": "456e7890-e12b-12d3-a456-426614174000",
"baseDecimals": 8,
"baseIconUrl": "https://cdn.0xmonaco.com/assets/btc.svg",
"baseToken": "BTC",
"baseTokenContract": "0x1234567890abcdef1234567890abcdef12345678",
"id": "123e4567-e89b-12d3-a456-426614174000",
"isActive": true,
"makerFeeBps": -2,
"marketType": "SPOT",
"maxOrderSize": "100.0",
"minOrderSize": "0.0001",
"quoteAssetId": "789e0123-e45b-12d3-a456-426614174000",
"quoteDecimals": 6,
"quoteIconUrl": "https://cdn.0xmonaco.com/assets/usdc.svg",
"quoteToken": "USDC",
"quoteTokenContract": "0x6a86da986797d59a839d136db490292cd560c131",
"symbol": "BTC/USDC",
"takerFeeBps": 10,
"tickSize": "0.01",
"minLeverage": "1",
"maxLeverage": "20",
"category": "crypto",
"quantityStepSize": "0.00001",
"baseAssetName": "Robinhood Markets",
"quoteAssetName": "USDC"
}
],
"page": 1,
"pageSize": 20,
"total": 50,
"totalPages": 3
}Query Parameters
Page number (1-indexed)
Required range:
1 <= x <= 10000Items per page (max 100)
Required range:
1 <= x <= 100Filter by market type
Available options:
SPOT, MARGIN Minimum string length:
1Response
OK
Paginated list of trading pairs.
Was this page helpful?

