get_token_flow_intelligence
curl --request POST \
--url https://pro-api.nikiwa.com/api/tools/get_token_flow_intelligence \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"token_address": "<string>",
"network": "<string>",
"timeframe": "7d"
}
'import requests
url = "https://pro-api.nikiwa.com/api/tools/get_token_flow_intelligence"
payload = {
"token_address": "<string>",
"network": "<string>",
"timeframe": "7d"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({token_address: '<string>', network: '<string>', timeframe: '7d'})
};
fetch('https://pro-api.nikiwa.com/api/tools/get_token_flow_intelligence', 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/get_token_flow_intelligence",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'token_address' => '<string>',
'network' => '<string>',
'timeframe' => '7d'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://pro-api.nikiwa.com/api/tools/get_token_flow_intelligence"
payload := strings.NewReader("{\n \"token_address\": \"<string>\",\n \"network\": \"<string>\",\n \"timeframe\": \"7d\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://pro-api.nikiwa.com/api/tools/get_token_flow_intelligence")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"token_address\": \"<string>\",\n \"network\": \"<string>\",\n \"timeframe\": \"7d\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://pro-api.nikiwa.com/api/tools/get_token_flow_intelligence")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"token_address\": \"<string>\",\n \"network\": \"<string>\",\n \"timeframe\": \"7d\"\n}"
response = http.request(request)
puts response.read_body{
"type": "flow_intelligence",
"data": [
{
"category": "All",
"net_flow_usd": 5000,
"whale_net_flow_usd": 3000,
"whale_wallet_count": 2,
"smart_trader_net_flow_usd": 2000,
"smart_trader_wallet_count": 4,
"inflow_usd": 8000,
"outflow_usd": 3000
}
],
"summary": {
"total_net_flow_usd": 5000,
"total_whale_flow_usd": 3000,
"total_smart_trader_flow_usd": 2000
},
"metadata": {
"token_address": "0x3333333333333333333333333333333333333333",
"timeframe": "7d",
"chain": "ethereum",
"tool": "flow_intelligence"
}
}Tools
get_token_flow_intelligence
Smart-money / exchange flow intelligence for a token. timeframe: 5m/1h/6h/12h/1d/7d.
POST
/
api
/
tools
/
get_token_flow_intelligence
get_token_flow_intelligence
curl --request POST \
--url https://pro-api.nikiwa.com/api/tools/get_token_flow_intelligence \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"token_address": "<string>",
"network": "<string>",
"timeframe": "7d"
}
'import requests
url = "https://pro-api.nikiwa.com/api/tools/get_token_flow_intelligence"
payload = {
"token_address": "<string>",
"network": "<string>",
"timeframe": "7d"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({token_address: '<string>', network: '<string>', timeframe: '7d'})
};
fetch('https://pro-api.nikiwa.com/api/tools/get_token_flow_intelligence', 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/get_token_flow_intelligence",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'token_address' => '<string>',
'network' => '<string>',
'timeframe' => '7d'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://pro-api.nikiwa.com/api/tools/get_token_flow_intelligence"
payload := strings.NewReader("{\n \"token_address\": \"<string>\",\n \"network\": \"<string>\",\n \"timeframe\": \"7d\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://pro-api.nikiwa.com/api/tools/get_token_flow_intelligence")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"token_address\": \"<string>\",\n \"network\": \"<string>\",\n \"timeframe\": \"7d\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://pro-api.nikiwa.com/api/tools/get_token_flow_intelligence")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"token_address\": \"<string>\",\n \"network\": \"<string>\",\n \"timeframe\": \"7d\"\n}"
response = http.request(request)
puts response.read_body{
"type": "flow_intelligence",
"data": [
{
"category": "All",
"net_flow_usd": 5000,
"whale_net_flow_usd": 3000,
"whale_wallet_count": 2,
"smart_trader_net_flow_usd": 2000,
"smart_trader_wallet_count": 4,
"inflow_usd": 8000,
"outflow_usd": 3000
}
],
"summary": {
"total_net_flow_usd": 5000,
"total_whale_flow_usd": 3000,
"total_smart_trader_flow_usd": 2000
},
"metadata": {
"token_address": "0x3333333333333333333333333333333333333333",
"timeframe": "7d",
"chain": "ethereum",
"tool": "flow_intelligence"
}
}Reading the result
The response example uses made-up values and shows selected fields. Fields vary by network and available data.-
datacontains net USD flows and wallet counts for categories such as whales, smart traders, exchanges, and fresh wallets. -
summarytotals the returned flow rows. Category totals can overlap; do not add them together as if the categories were mutually exclusive. -
metadata.timeframeis the timeframe actually used after validation, which can differ from the requested value.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Response
Smart-money / exchange flow intelligence for a token. timeframe: 5m/1h/6h/12h/1d/7d. Fields vary by network and available data. Check for status: no_data, status: error, or an error field even when HTTP status is 200. See Errors & status.
Response fields depend on the network and available data. The example shows selected fields; see Reading the result for details.
Was this page helpful?