1:1 mapped with HL APIs.
Point your bot at HyPaper instead of HyperLiquid. Same requests, same responses, same WebSocket protocol. Your bot sees no difference. Your wallet does.
Built to mirror the HyperLiquid API exactly. Switch between paper and live with a single URL change.
Open the HyPaper skills folder and hand your agent a machine-readable starting point for discovery, execution, and account workflows.
skills/hypaper-api
- machine-readable API context
- account and order workflows
- ready for agent ingestion Every request you send to HyperLiquid works on HyPaper. Paper-specific controls live on their own endpoint.
// POST /exchange
{
"wallet": "0xYourBot",
"action": {
"type": "order",
"grouping": "na",
"orders": [
{ "a": 0, "b": true, "p": "83000", "s": "0.1", "r": false }
]
}
} # Before (real HL)
base_url = "https://api.hyperliquid.xyz"
# After (HyPaper)
base_url = "http://localhost:3000"
# That's it. Same requests, same responses. $ git clone https://github.com/GigabrainGG/HyPaper.git
$ cd hypaper-backend && cp .env.example .env
$ docker compose up -d
# server at http://localhost:3000
# ws at ws://localhost:3000/ws Clone the repo, set your balance, and run Docker Compose. Your paper environment is live in minutes.