curl --request POST \
--url 'https://api.hypedexer.com/info#userFunding' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"type": "userFunding",
"user": "0x010461c14e146ac35fe42271bdc1134ee31c703a",
"startTime": 1781481600000,
"endTime": 1781481660000,
"limit": 2
}
'import requests
url = "https://api.hypedexer.com/info#userFunding"
payload = {
"type": "userFunding",
"user": "0x010461c14e146ac35fe42271bdc1134ee31c703a",
"startTime": 1781481600000,
"endTime": 1781481660000,
"limit": 2
}
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({
type: 'userFunding',
user: '0x010461c14e146ac35fe42271bdc1134ee31c703a',
startTime: 1781481600000,
endTime: 1781481660000,
limit: 2
})
};
fetch('https://api.hypedexer.com/info#userFunding', 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://api.hypedexer.com/info#userFunding",
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([
'type' => 'userFunding',
'user' => '0x010461c14e146ac35fe42271bdc1134ee31c703a',
'startTime' => 1781481600000,
'endTime' => 1781481660000,
'limit' => 2
]),
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://api.hypedexer.com/info#userFunding"
payload := strings.NewReader("{\n \"type\": \"userFunding\",\n \"user\": \"0x010461c14e146ac35fe42271bdc1134ee31c703a\",\n \"startTime\": 1781481600000,\n \"endTime\": 1781481660000,\n \"limit\": 2\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://api.hypedexer.com/info#userFunding")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"type\": \"userFunding\",\n \"user\": \"0x010461c14e146ac35fe42271bdc1134ee31c703a\",\n \"startTime\": 1781481600000,\n \"endTime\": 1781481660000,\n \"limit\": 2\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hypedexer.com/info#userFunding")
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 \"type\": \"userFunding\",\n \"user\": \"0x010461c14e146ac35fe42271bdc1134ee31c703a\",\n \"startTime\": 1781481600000,\n \"endTime\": 1781481660000,\n \"limit\": 2\n}"
response = http.request(request)
puts response.read_body[
{
"time": 1781481600049,
"hash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"coin": "0G",
"usdc": "0.167934",
"szi": "-44405",
"delta": {
"type": "funding",
"coin": "0G",
"usdc": "0.167934",
"szi": "-44405",
"fundingRate": "0.0000125",
"nSamples": null
}
},
{
"time": 1781481600049,
"hash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"coin": "2Z",
"usdc": "0.246354",
"szi": "272895",
"delta": {
"type": "funding",
"coin": "2Z",
"usdc": "0.246354",
"szi": "272895",
"fundingRate": "-0.0000126156",
"nSamples": null
}
}
]{
"error": "Invalid API key"
}User funding payments
Hourly funding payments of a wallet, rebuilt from Hyperliquid’s official node event archive. accountFunding is an alias and returns the same response. Also served as GET /funding/userFunding (Indexed Data REST API).
timeis the exact settlement timestamp in milliseconds, the same value Hyperliquid returns.startTimeandendTimeare inclusive bounds on it.- Newest settlement first, then by coin (A to Z). All payments of one settlement share the same
time: to page backwards without gaps, request up tolimit=5000; when a page comes back full, drop the rows carrying its oldesttimeand request again withendTimeset to thattimeminus 1. usdcis positive when the wallet received funding and negative when it paid;sziis the signed position size at settlement.- Coverage: complete from 2025-09-27 10:00 UTC, the start of the node event archive. An earlier window returns
[]rather than estimated values. A new settlement is available about 30 seconds after the hour.
curl --request POST \
--url 'https://api.hypedexer.com/info#userFunding' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"type": "userFunding",
"user": "0x010461c14e146ac35fe42271bdc1134ee31c703a",
"startTime": 1781481600000,
"endTime": 1781481660000,
"limit": 2
}
'import requests
url = "https://api.hypedexer.com/info#userFunding"
payload = {
"type": "userFunding",
"user": "0x010461c14e146ac35fe42271bdc1134ee31c703a",
"startTime": 1781481600000,
"endTime": 1781481660000,
"limit": 2
}
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({
type: 'userFunding',
user: '0x010461c14e146ac35fe42271bdc1134ee31c703a',
startTime: 1781481600000,
endTime: 1781481660000,
limit: 2
})
};
fetch('https://api.hypedexer.com/info#userFunding', 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://api.hypedexer.com/info#userFunding",
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([
'type' => 'userFunding',
'user' => '0x010461c14e146ac35fe42271bdc1134ee31c703a',
'startTime' => 1781481600000,
'endTime' => 1781481660000,
'limit' => 2
]),
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://api.hypedexer.com/info#userFunding"
payload := strings.NewReader("{\n \"type\": \"userFunding\",\n \"user\": \"0x010461c14e146ac35fe42271bdc1134ee31c703a\",\n \"startTime\": 1781481600000,\n \"endTime\": 1781481660000,\n \"limit\": 2\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://api.hypedexer.com/info#userFunding")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"type\": \"userFunding\",\n \"user\": \"0x010461c14e146ac35fe42271bdc1134ee31c703a\",\n \"startTime\": 1781481600000,\n \"endTime\": 1781481660000,\n \"limit\": 2\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hypedexer.com/info#userFunding")
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 \"type\": \"userFunding\",\n \"user\": \"0x010461c14e146ac35fe42271bdc1134ee31c703a\",\n \"startTime\": 1781481600000,\n \"endTime\": 1781481660000,\n \"limit\": 2\n}"
response = http.request(request)
puts response.read_body[
{
"time": 1781481600049,
"hash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"coin": "0G",
"usdc": "0.167934",
"szi": "-44405",
"delta": {
"type": "funding",
"coin": "0G",
"usdc": "0.167934",
"szi": "-44405",
"fundingRate": "0.0000125",
"nSamples": null
}
},
{
"time": 1781481600049,
"hash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"coin": "2Z",
"usdc": "0.246354",
"szi": "272895",
"delta": {
"type": "funding",
"coin": "2Z",
"usdc": "0.246354",
"szi": "272895",
"fundingRate": "-0.0000126156",
"nSamples": null
}
}
]{
"error": "Invalid API key"
}Authorizations
Your Hypedexer API key, sent as Authorization: Bearer <key>. The X-API-Key: <key> header and the api_key query parameter are accepted as well.
Body
userFunding, accountFunding Wallet address (0x-prefixed, case-insensitive)
Inclusive lower bound on the settlement time, epoch milliseconds
Inclusive upper bound on the settlement time, epoch milliseconds
1 <= x <= 5000Response
Funding payments, newest settlement first
Exact settlement timestamp in milliseconds, the same value Hyperliquid returns
Always the zero hash: a funding payment has no transaction
Market (top-level copy of delta.coin)
Payment in USDC (top-level copy of delta.usdc)
Position size (top-level copy of delta.szi)
Show child attributes
Show child attributes