Introduction

A community-supported Hyperliquid APIarrow-up-right SDK for all major JS runtimes, written in TypeScript.

Installation

npm i @nktkas/hyperliquid

Quick start

Read market data, account state, order book. Learn more

import { HttpTransport, InfoClient } from "@nktkas/hyperliquid";

const transport = new HttpTransport();
const client = new InfoClient({ transport });

const mids = await client.allMids();

Last updated