BlockHaven

BlockHaven Documentation

Everything you need to integrate with BlockHaven RPC

Contents

Quick Start

Get started with BlockHaven RPC in under 5 minutes

Important: JWT Tokens Are Dashboard-Only

For security reasons, JWT tokens must be obtained through the dashboard. There is no public API endpoint to generate tokens - you must connect your wallet and sign a message to prove ownership.

Get Your JWT Token →

Step 1: Get Your API Token

Hold $BLOCK tokens to access our RPC. Connect your wallet through the dashboard to get your JWT token.

🔒 Secure Access: Tokens are issued through our dashboard with wallet signature verification. This ensures only the wallet owner can generate tokens.

Open Dashboard

Step 2: Make Your First Request

Use your JWT token to access Solana RPC with low latency and high reliability.

curl -X POST https://gateway.blockhaven.tech/rpc \
  -H "Authorization: Bearer YOUR_JWT_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "getHealth"
  }'

Step 3: Start Building

You're all set! Use any Solana library with our RPC endpoint.

💬
!
Contact Support