Get exchange information
curl --request GET \
--url https://exchange.kuru.io/api/v3/exchangeInfoimport requests
url = "https://exchange.kuru.io/api/v3/exchangeInfo"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://exchange.kuru.io/api/v3/exchangeInfo', 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://exchange.kuru.io/api/v3/exchangeInfo",
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://exchange.kuru.io/api/v3/exchangeInfo"
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://exchange.kuru.io/api/v3/exchangeInfo")
.asString();require 'uri'
require 'net/http'
url = URI("https://exchange.kuru.io/api/v3/exchangeInfo")
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{
"timezone": "UTC",
"serverTime": 1699999999000,
"E": 1711000000000,
"T": 1711000000,
"symbols": [
{
"symbol": "MON_USDC",
"status": "TRADING",
"baseAsset": "MON",
"quoteAsset": "USDC",
"baseAssetPrecision": 8,
"quoteAssetPrecision": 6
},
{
"symbol": "ETHUSDC",
"status": "TRADING",
"baseAsset": "ETH",
"quoteAsset": "USDC",
"baseAssetPrecision": 8,
"quoteAssetPrecision": 6
}
]
}Exchange Info
Get exchange information
Get current exchange trading rules, symbols, and market metadata.
Weight: 10
GET
/
api
/
v3
/
exchangeInfo
Get exchange information
curl --request GET \
--url https://exchange.kuru.io/api/v3/exchangeInfoimport requests
url = "https://exchange.kuru.io/api/v3/exchangeInfo"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://exchange.kuru.io/api/v3/exchangeInfo', 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://exchange.kuru.io/api/v3/exchangeInfo",
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://exchange.kuru.io/api/v3/exchangeInfo"
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://exchange.kuru.io/api/v3/exchangeInfo")
.asString();require 'uri'
require 'net/http'
url = URI("https://exchange.kuru.io/api/v3/exchangeInfo")
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{
"timezone": "UTC",
"serverTime": 1699999999000,
"E": 1711000000000,
"T": 1711000000,
"symbols": [
{
"symbol": "MON_USDC",
"status": "TRADING",
"baseAsset": "MON",
"quoteAsset": "USDC",
"baseAssetPrecision": 8,
"quoteAssetPrecision": 6
},
{
"symbol": "ETHUSDC",
"status": "TRADING",
"baseAsset": "ETH",
"quoteAsset": "USDC",
"baseAssetPrecision": 8,
"quoteAssetPrecision": 6
}
]
}Response
200 - application/json
Successful response
Exchange information response
Server timezone
Example:
"UTC"
Server wall-clock time in milliseconds
Example:
1699999999000
Latest committed block timestamp in milliseconds (T × 1000), sourced from the Monad block header
Example:
1711000000000
Latest committed block timestamp in Unix seconds, sourced from the Monad block header
Example:
1711000000
List of trading symbols
Show child attributes
Show child attributes