Omni Terminal analyzes a public Hyperliquid wallet's reconciled equity, PnL, positions, ba
Omni Terminal analyzes a public Hyperliquid wallet's reconciled equity, PnL, positions, balances, activity, and data-quality flags for copy-trading or counterparty research.
5000 (raw units)
price
15
calls / 30d
3
unique payers
2026-09-05
updated
Provider
omniterminal.app · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:84532",
"payTo": "0x733f40A4FA0cd13d59aBADE04b9eD2e9acAc6457",
"asset": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"amount": "5000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x733f40A4FA0cd13d59aBADE04b9eD2e9acAc6457",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"pathParams": {
"address": "0x0ddf9bae2af4b874b96d287a5ad42eb47138a902"
},
"queryParams": {
"limit": 20,
"range": "30d",
"view": "full"
},
"type": "http"
},
"output": {
"example": {
"activity": {
"fills_count": 146,
"fills_may_be_truncated": false,
"funding_count": 92,
"ledger_count": 4,
"twap_count": 0
},
"address": "0x0ddf9bae2af4b874b96d287a5ad42eb47138a902",
"components": {
"funding_pnl": -84.21,
"net_external_flows": 15000,
"perp_equity_current": 103215.11,
"realized_trade_pnl": 6563.32,
"spot_equity_current": 22215.06,
"unrealized_pnl": 1942.44
},
"data_as_of": 1784116800000,
"freshness": {
"age_seconds": 0,
"data_as_of": "2026-07-15T12:00:00.000Z",
"max_age_seconds": 900,
"status": "fresh"
},
"generated_at": "2026-07-15T12:00:00.000Z",
"positions": [
{
"coin": "BTC",
"dex": "main",
"entry_price": "102450",
"leverage": null,
"liquidation_price": "76320",
"margin_used": "32015.63",
"position_value": "128062.5",
"return_on_equity": "0.045",
"side": "long",
"size": "1.25",
"unrealized_pnl": "1942.44"
}
],
"product_version": "v1",
"quality": {
"degraded_sources": [],
"portfolio_history_used": true
},
"range": "30d",
"schema": "trader_profile.v1",
"scope": "wallet",
"service": "omni.trader_profile",
"spot_balances": [
{
"coin": "USDC",
"held": "0",
"mark_price": "1",
"total": "22215.06",
"usd_value": "22215.06"
}
],
"summary": {
"components": 4,
"economic_pnl_current": 8421.55,
"funding_pnl": -84.21,
"net_external_flows": 15000,
"total_equity_current": 125430.17
},
"usage": {
"position_count": 1,
"spot_balance_count": 1
},
"view": "full"
},
"type": "json"
}
},
"routeTemplate": "/api/x402/v1/trader-profile/:address",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"pathParams": {
"properties": {
"address": {
"description": "Public 20-byte EVM/Hyperliquid wallet address.",
"pattern": "^0x[0-9a-fA-F]{40}$",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
},
"queryParams": {
"properties": {
"limit": {
"default": 20,
"maximum": 20,
"minimum": 1,
"type": "integer"
},
"range": {
"default": "30d",
"enum": [
"1d",
"7d",
"30d",
"all"
],
"type": "string"
},
"symbol": {
"description": "Optional allowlisted symbol filter for open positions, for example BTC.",
"type": "string"
},
"view": {
"default": "full",
"enum": [
"summary",
"positions",
"balances",
"full"
],
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
},
"builder-code": {
"info": {
"a": "bc_wttcxbb6"
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"a": {
"description": "App builder code",
"pattern": "^[a-z0-9_]{1,32}$",
"type": "string"
},
"s": {
"description": "Service builder codes",
"items": {
"pattern": "^[a-z0-9_]{1,32}$",
"type": "string"
},
"type": "array"
},
"w": {
"description": "Wallet builder code",
"pattern": "^[a-z0-9_]{1,32}$",
"type": "string"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://omniterminal.app/api/x402/v1/trader-profile/:address" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://omniterminal.app/api/x402/v1/trader-profile/:address");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://omniterminal.app/api/x402/v1/trader-profile/:address")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/1456.json, and this resource appears in /discovery/resources and /discovery/search.