Get Top Token Trader Positions
curl --request GET \
--url https://demo-api.mobula.io/api/2/token/trader-positionsimport requests
url = "https://demo-api.mobula.io/api/2/token/trader-positions"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://demo-api.mobula.io/api/2/token/trader-positions', 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://demo-api.mobula.io/api/2/token/trader-positions",
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://demo-api.mobula.io/api/2/token/trader-positions"
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://demo-api.mobula.io/api/2/token/trader-positions")
.asString();require 'uri'
require 'net/http'
url = URI("https://demo-api.mobula.io/api/2/token/trader-positions")
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{
"data": [
{
"chainId": "<string>",
"walletAddress": "<string>",
"tokenAddress": "<string>",
"tokenAmount": "<string>",
"tokenAmountRaw": "<string>",
"tokenAmountUSD": "<string>",
"percentageOfTotalSupply": "<string>",
"pnlUSD": "<string>",
"realizedPnlUSD": "<string>",
"unrealizedPnlUSD": "<string>",
"totalPnlUSD": "<string>",
"buys": 123,
"sells": 123,
"volumeBuyToken": "<string>",
"volumeSellToken": "<string>",
"volumeBuyUSD": "<string>",
"volumeSellUSD": "<string>",
"avgBuyPriceUSD": "<string>",
"avgSellPriceUSD": "<string>",
"walletFundAt": "<string>",
"lastActivityAt": "<string>",
"firstTradeAt": "<string>",
"lastTradeAt": "<string>",
"fundingInfo": {
"from": "<string>",
"date": "<string>",
"chainId": "<string>",
"txHash": "<string>",
"amount": "<string>",
"formattedAmount": 123,
"currency": {
"name": "<string>",
"symbol": "<string>",
"logo": "<string>",
"decimals": 123,
"address": "<string>"
},
"fromWalletLogo": "<string>",
"fromWalletTag": "<string>",
"fromWalletMetadata": {
"entityName": "<string>",
"entityLogo": "<string>",
"entityLabels": [
"<string>"
],
"entityType": "<string>",
"entityDescription": "<string>",
"entityTwitter": "<string>",
"entityWebsite": "<string>",
"entityGithub": "<string>",
"entityDiscord": "<string>",
"entityTelegram": "<string>",
"extra": {}
}
},
"totalFeesPaidUSD": "0",
"buyFeesPaidUSD": "0",
"sellFeesPaidUSD": "0",
"nativeBalance": "0",
"nativeBalanceRaw": "0",
"labels": [],
"walletMetadata": {
"entityName": "<string>",
"entityLogo": "<string>",
"entityLabels": [
"<string>"
],
"entityType": "<string>",
"entityDescription": "<string>",
"entityTwitter": "<string>",
"entityWebsite": "<string>",
"entityGithub": "<string>",
"entityDiscord": "<string>",
"entityTelegram": "<string>",
"extra": {}
},
"platform": {
"id": "<string>",
"name": "<string>",
"logo": "<string>"
}
}
],
"totalCount": 123
}Holders
Get Top Token Trader Positions
Retrieve trader positions for a token on a specific blockchain, including holdings, trading activity, and label-based filtering.
GET
/
2
/
token
/
trader-positions
Get Top Token Trader Positions
curl --request GET \
--url https://demo-api.mobula.io/api/2/token/trader-positionsimport requests
url = "https://demo-api.mobula.io/api/2/token/trader-positions"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://demo-api.mobula.io/api/2/token/trader-positions', 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://demo-api.mobula.io/api/2/token/trader-positions",
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://demo-api.mobula.io/api/2/token/trader-positions"
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://demo-api.mobula.io/api/2/token/trader-positions")
.asString();require 'uri'
require 'net/http'
url = URI("https://demo-api.mobula.io/api/2/token/trader-positions")
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{
"data": [
{
"chainId": "<string>",
"walletAddress": "<string>",
"tokenAddress": "<string>",
"tokenAmount": "<string>",
"tokenAmountRaw": "<string>",
"tokenAmountUSD": "<string>",
"percentageOfTotalSupply": "<string>",
"pnlUSD": "<string>",
"realizedPnlUSD": "<string>",
"unrealizedPnlUSD": "<string>",
"totalPnlUSD": "<string>",
"buys": 123,
"sells": 123,
"volumeBuyToken": "<string>",
"volumeSellToken": "<string>",
"volumeBuyUSD": "<string>",
"volumeSellUSD": "<string>",
"avgBuyPriceUSD": "<string>",
"avgSellPriceUSD": "<string>",
"walletFundAt": "<string>",
"lastActivityAt": "<string>",
"firstTradeAt": "<string>",
"lastTradeAt": "<string>",
"fundingInfo": {
"from": "<string>",
"date": "<string>",
"chainId": "<string>",
"txHash": "<string>",
"amount": "<string>",
"formattedAmount": 123,
"currency": {
"name": "<string>",
"symbol": "<string>",
"logo": "<string>",
"decimals": 123,
"address": "<string>"
},
"fromWalletLogo": "<string>",
"fromWalletTag": "<string>",
"fromWalletMetadata": {
"entityName": "<string>",
"entityLogo": "<string>",
"entityLabels": [
"<string>"
],
"entityType": "<string>",
"entityDescription": "<string>",
"entityTwitter": "<string>",
"entityWebsite": "<string>",
"entityGithub": "<string>",
"entityDiscord": "<string>",
"entityTelegram": "<string>",
"extra": {}
}
},
"totalFeesPaidUSD": "0",
"buyFeesPaidUSD": "0",
"sellFeesPaidUSD": "0",
"nativeBalance": "0",
"nativeBalanceRaw": "0",
"labels": [],
"walletMetadata": {
"entityName": "<string>",
"entityLogo": "<string>",
"entityLabels": [
"<string>"
],
"entityType": "<string>",
"entityDescription": "<string>",
"entityTwitter": "<string>",
"entityWebsite": "<string>",
"entityGithub": "<string>",
"entityDiscord": "<string>",
"entityTelegram": "<string>",
"extra": {}
},
"platform": {
"id": "<string>",
"name": "<string>",
"logo": "<string>"
}
}
],
"totalCount": 123
}Query Parameters
Blockchain chain ID (e.g., "evm:56", "solana:solana")
Token contract address
Filter by wallet label (e.g. sniper, bundler, insider)
Available options:
sniper, insider, bundler, proTrader, smartTrader, freshTrader, freshTrader30d, dev, liquidityPool, locker Maximum number of results (default: 100)
Offset for pagination
Comma-separated wallet addresses to filter
Include total fees paid (gas + platform + MEV) and deduct from PnL
⌘I