cURL Example
curl -X GET "$API/emm/ticks" \
-H "Authorization: Bearer $TOKEN"import requests
url = "https://api.novig.com/nbx/v2/emm/ticks"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.novig.com/nbx/v2/emm/ticks', 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.novig.com/nbx/v2/emm/ticks",
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.novig.com/nbx/v2/emm/ticks"
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.novig.com/nbx/v2/emm/ticks")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.novig.com/nbx/v2/emm/ticks")
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[
0.001,
0.002,
0.003,
0.004,
0.005,
"…",
0.01,
"…",
0.05,
0.055,
"…",
0.1,
"…",
0.5,
"…",
0.9,
"…",
0.945,
0.95,
"…",
0.995,
0.996,
0.997,
0.998,
0.999
]Markets
Get ticks
Fetch the canonical set of valid submittable price ticks. Orders must be priced at one of these ticks; prices outside the table will be rejected.
Do not hardcode this table. Always fetch it dynamically, as it may change in the future.
Note: The example response is truncated for readability —
…denotes omitted ticks between the listed values. Always use the live response for the full set of valid ticks.
Rate limit: 128 requests per second.
GET
/
nbx
/
v2
/
emm
/
ticks
cURL Example
curl -X GET "$API/emm/ticks" \
-H "Authorization: Bearer $TOKEN"import requests
url = "https://api.novig.com/nbx/v2/emm/ticks"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.novig.com/nbx/v2/emm/ticks', 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.novig.com/nbx/v2/emm/ticks",
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.novig.com/nbx/v2/emm/ticks"
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.novig.com/nbx/v2/emm/ticks")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.novig.com/nbx/v2/emm/ticks")
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[
0.001,
0.002,
0.003,
0.004,
0.005,
"…",
0.01,
"…",
0.05,
0.055,
"…",
0.1,
"…",
0.5,
"…",
0.9,
"…",
0.945,
0.95,
"…",
0.995,
0.996,
0.997,
0.998,
0.999
]Response
200 - application/json
Successfully retrieved the tick table.
Example:
[
0.001,
0.002,
0.003,
0.004,
0.005,
"…",
0.01,
"…",
0.05,
0.055,
"…",
0.1,
"…",
0.5,
"…",
0.9,
"…",
0.945,
0.95,
"…",
0.995,
0.996,
0.997,
0.998,
0.999
]