cURL
curl --request GET \
--url https://api.cnt.ekiden.fi/api/v1/market/instruments-infoimport requests
url = "https://api.cnt.ekiden.fi/api/v1/market/instruments-info"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.cnt.ekiden.fi/api/v1/market/instruments-info', 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://api.cnt.ekiden.fi/api/v1/market/instruments-info",
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://api.cnt.ekiden.fi/api/v1/market/instruments-info"
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://api.cnt.ekiden.fi/api/v1/market/instruments-info")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.cnt.ekiden.fi/api/v1/market/instruments-info")
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{
"aptos_network": "<string>",
"build_id": "<string>",
"quote_asset_metadata": "<string>",
"runtime_manifest_generation": 1,
"runtime_manifest_phase": "<string>",
"category": "<string>",
"list": [
{
"addr": "<string>",
"base_coin": "<string>",
"base_scale": 1,
"delivery_fee_rate": "<string>",
"delivery_time": "<string>",
"funding_interval": 1,
"launch_time": "<string>",
"leverage_filter": {
"leverage_step": "<string>",
"max_leverage": "<string>",
"min_leverage": "<string>"
},
"lot_size_filter": {
"max_mkt_order_qty": "<string>",
"max_order_qty": "<string>",
"min_notional_value": "<string>",
"min_order_qty": "<string>",
"post_only_max_order_qty": "<string>",
"qty_step": "<string>"
},
"maker_fee_rate": "<string>",
"price_filter": {
"max_price": "<string>",
"min_price": "<string>",
"tick_size": "<string>"
},
"price_scale": 1,
"quote_addr": "<string>",
"quote_coin": "<string>",
"quote_scale": 1,
"settle_coin": "<string>",
"status": "<string>",
"symbol": "<string>",
"taker_fee_rate": "<string>",
"unified_margin_trade": true
}
],
"package_id": "<string>",
"perpetual_addr": "<string>"
}Market
Get apiv1marketinstruments info
GET
/
api
/
v1
/
market
/
instruments-info
cURL
curl --request GET \
--url https://api.cnt.ekiden.fi/api/v1/market/instruments-infoimport requests
url = "https://api.cnt.ekiden.fi/api/v1/market/instruments-info"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.cnt.ekiden.fi/api/v1/market/instruments-info', 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://api.cnt.ekiden.fi/api/v1/market/instruments-info",
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://api.cnt.ekiden.fi/api/v1/market/instruments-info"
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://api.cnt.ekiden.fi/api/v1/market/instruments-info")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.cnt.ekiden.fi/api/v1/market/instruments-info")
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{
"aptos_network": "<string>",
"build_id": "<string>",
"quote_asset_metadata": "<string>",
"runtime_manifest_generation": 1,
"runtime_manifest_phase": "<string>",
"category": "<string>",
"list": [
{
"addr": "<string>",
"base_coin": "<string>",
"base_scale": 1,
"delivery_fee_rate": "<string>",
"delivery_time": "<string>",
"funding_interval": 1,
"launch_time": "<string>",
"leverage_filter": {
"leverage_step": "<string>",
"max_leverage": "<string>",
"min_leverage": "<string>"
},
"lot_size_filter": {
"max_mkt_order_qty": "<string>",
"max_order_qty": "<string>",
"min_notional_value": "<string>",
"min_order_qty": "<string>",
"post_only_max_order_qty": "<string>",
"qty_step": "<string>"
},
"maker_fee_rate": "<string>",
"price_filter": {
"max_price": "<string>",
"min_price": "<string>",
"tick_size": "<string>"
},
"price_scale": 1,
"quote_addr": "<string>",
"quote_coin": "<string>",
"quote_scale": 1,
"settle_coin": "<string>",
"status": "<string>",
"symbol": "<string>",
"taker_fee_rate": "<string>",
"unified_margin_trade": true
}
],
"package_id": "<string>",
"perpetual_addr": "<string>"
}Response
200 - application/json
Get all instruments information
Build identifier for the running backend (e.g. git commit SHA).
Identifies the deployed build for release/version verification without disclosing source code.
Required range:
x >= 0Show child attributes
Show child attributes
Deployed Ekiden Daml package id. Set on Canton backends only.
Aptos perpetual contract address. Omitted on Canton backends.
⌘I