Discover Tools
curl --request GET \
--url https://pro-api.nikiwa.com/api/tools \
--header 'Authorization: <authorization>'import requests
url = "https://pro-api.nikiwa.com/api/tools"
headers = {"Authorization": "<authorization>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<authorization>'}};
fetch('https://pro-api.nikiwa.com/api/tools', 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://pro-api.nikiwa.com/api/tools",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <authorization>"
],
]);
$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://pro-api.nikiwa.com/api/tools"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<authorization>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://pro-api.nikiwa.com/api/tools")
.header("Authorization", "<authorization>")
.asString();require 'uri'
require 'net/http'
url = URI("https://pro-api.nikiwa.com/api/tools")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<authorization>'
response = http.request(request)
puts response.read_bodyPublic Tools API
Discover Tools
List the public tools and read their input specs.
GET
/
api
/
tools
Discover Tools
curl --request GET \
--url https://pro-api.nikiwa.com/api/tools \
--header 'Authorization: <authorization>'import requests
url = "https://pro-api.nikiwa.com/api/tools"
headers = {"Authorization": "<authorization>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<authorization>'}};
fetch('https://pro-api.nikiwa.com/api/tools', 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://pro-api.nikiwa.com/api/tools",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <authorization>"
],
]);
$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://pro-api.nikiwa.com/api/tools"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<authorization>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://pro-api.nikiwa.com/api/tools")
.header("Authorization", "<authorization>")
.asString();require 'uri'
require 'net/http'
url = URI("https://pro-api.nikiwa.com/api/tools")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<authorization>'
response = http.request(request)
puts response.read_bodyDiscovery is the read-only surface. It tells you which tools are public and what inputs each one expects. Use it to build a request before calling execute.
Each entry is self-describing: a tool name, a description, and the input schema you pass to execute it. See the tool catalog for what is available.
List tools
string
required
Your developer key as a Bearer token.
curl https://pro-api.nikiwa.com/api/tools \
-H "Authorization: Bearer nkw_live_YOUR_KEY"
import requests
r = requests.get(
"https://pro-api.nikiwa.com/api/tools",
headers={"Authorization": "Bearer nkw_live_YOUR_KEY"},
)
tools = r.json()
OpenAPI spec
The public tools are also described as an OpenAPI document, served without authentication:curl https://pro-api.nikiwa.com/api/tools/openapi.json
Point your code generator or API client at
https://pro-api.nikiwa.com/api/tools/openapi.json to generate a typed client for the public tools automatically.Reading valid networks at runtime
The set of supported chains can change as data-provider coverage evolves. Rather than hard-coding it, read the canonical network list from thenikiwa://chains MCP resource so your integration stays current. See Supported Networks.Was this page helpful?