curl --request POST \
--url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info \
--header 'Content-Type: application/json' \
--data '{
"type": "webData2"
}'
{
"marketData": {
"markets": [
{
"symbol": "<string>",
"price": "<string>",
"volume24h": "<string>",
"change24h": "<string>"
}
],
"totalVolume": "<string>",
"totalOpenInterest": "<string>"
},
"networkStats": {
"blockHeight": 123,
"activeUsers": 123,
"totalTransactions": 123
},
"uiConfig": {
"features": [
"<string>"
],
"maintenance": true
}
}
curl --request POST \
--url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info \
--header 'Content-Type: application/json' \
--data '{
"type": "webData2"
}'
{
"marketData": {
"markets": [
{
"symbol": "<string>",
"price": "<string>",
"volume24h": "<string>",
"change24h": "<string>"
}
],
"totalVolume": "<string>",
"totalOpenInterest": "<string>"
},
"networkStats": {
"blockHeight": 123,
"activeUsers": 123,
"totalTransactions": 123
},
"uiConfig": {
"features": [
"<string>"
],
"maintenance": true
}
}
info
endpoint with type: "webData2"
returns aggregate information about a user for frontend consumption. It is primarily a convenience aggregation used by web clients.
type
(string, required) — The request type. Must be "webData2"
.user
(string, required) — Address in 42-character hexadecimal format (e.g., 0x31ca8395cf837de08b24da3f660e77761dfb974b
).curl -X POST \
-H "Content-Type: application/json" \
-d '{"type": "webData2"}' \
https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info
info
endpoint with type: "webData2"
is essential for applications that need to:
Web application data and interface configuration
Comprehensive web application data for frontend interfaces
Was this page helpful?