Skip to main content
GET
/
api
/
v1
/
hlp
Fetch underlying Hyperliquid HLP TVL and PnL series.
curl --request GET \
  --url https://shlp-web-production.up.railway.app/api/v1/hlp
{
  "success": true,
  "data": {
    "vault": {
      "name": "<string>",
      "tvlUsd": 123,
      "apr": 123,
      "aprPct": 123,
      "ratePct": 123,
      "rateKind": "apr",
      "apyPct": 123
    },
    "pnl": {
      "latestUsd": 123,
      "series": [
        {
          "t": 123,
          "timestamp": "2023-11-07T05:31:56Z",
          "value": 123
        }
      ]
    },
    "tvl": {
      "series": [
        {
          "t": 123,
          "timestamp": "2023-11-07T05:31:56Z",
          "value": 123
        }
      ]
    }
  },
  "meta": {
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Response

OK

success
boolean
required
data
object
required
meta
object
required