3 min read·Updated 2026-06-14
Funding
Per-coin funding payments and rates observed for a wallet's positions.
GET
/networks/{network}/wallets/{address}/fundingFunding entries show per-coin funding payments and the funding rate observed for the position.
Path Params
networkstringrequired
Network identifier. Only hyperliquid is supported.
Example: hyperliquid
addressstringrequired
Wallet address — 0x followed by 40 lowercase hex characters.
Example: 0x1111111111111111111111111111111111111111
Query Params
limitinteger
Maximum number of items to return. Hard cap 500.
Example: 25
Responses
200OK
Funding payment history for the wallet.
Schema
itemsobject[]
Funding payments.
coinstring
Asset symbol.
paymentUsdstring
Funding payment in USD (negative = paid).
positionSizestring
Position size at funding time.
fundingRatestring
Funding rate applied.
timestring (ISO 8601)
Funding timestamp.
400Bad Request
401Unauthorized
404Not Found
500Server Error
Request
curl -sS "https://api.dexhunt.app/v1/networks/hyperliquid/wallets/0x1111111111111111111111111111111111111111/funding?limit=2" \
-H "X-API-Key: hlsk_your_developer_key"Response
200 · OK
{
"items": [
{
"coin": "BTC",
"paymentUsd": "-120.45",
"positionSize": "44.75",
"fundingRate": "0.0000125",
"time": "2026-06-12T08:00:00Z"
}
]
}