Skip to main content
POST
/
info
info (isVip)
curl --request POST \
  --url https://api.hyperliquid.xyz/info \
  --header 'Content-Type: application/json' \
  --data '
{
  "type": "isVip",
  "user": "0x1442ad477ded1b0028b57621aa7b6f7eadb8f568"
}
'
true
You can only use this endpoint on the official Hyperliquid public API. It is not available through Chainstack, as the open-source node implementation does not support it yet. See Hyperliquid methods for the full availability breakdown.
The info endpoint with type: "isVip" returns whether a user currently has VIP status on Hyperliquid. VIP status affects fee tiers and access to certain features.
Get your own node endpoint todayStart for free and get your app to production levels immediately. No credit card required.You can sign up with your GitHub, X, Google, or Microsoft account.

Parameters

Request body

  • type (string, required) — The request type. Must be "isVip".
  • user (string, required) — Address in 42-character hexadecimal format.

Response

Returns a boolean indicating whether the user currently has VIP status (true), or false otherwise. May be null if the status is unknown.

Example request

curl -X POST \
  -H "Content-Type: application/json" \
  -d '{"type": "isVip", "user": "0x1442ad477ded1b0028b57621aa7b6f7eadb8f568"}' \
  https://api.hyperliquid.xyz/info

Example response

false

Use cases

The info endpoint with type: "isVip" is useful for:
  • Displaying a user’s fee tier or VIP badge
  • Gating VIP-only features in a frontend
  • Analytics on VIP participation

Body

application/json
type
enum<string>
default:isVip
required

Request type

Available options:
isVip
user
string
default:0x1442ad477ded1b0028b57621aa7b6f7eadb8f568
required

User address in 42-character hexadecimal format.

Response

200 - application/json
boolean | null

Whether the user currently has VIP status.

Last modified on June 24, 2026