Rakurai (1.0.0)

Rakurai API — HTTP API for Rakurai liquid and native staking, node scheduler downloads, and validator metrics.

Unsigned transactions: Stake/unstake routes return an unsigned transaction (txn as hex). Sign with the appropriate wallet keypair, then submit with POST /api/v1/send-txn.

GET with JSON body: Some validator routes expect a JSON body on GET (as implemented). Use a client that can send a body on GET.

Download OpenAPI description
Languages
Servers
Production
https://api.rakurai.io/

Native

Native stake and unstake (unsigned transactions).

Operations

Liquid

Liquid stake, unstake, and Jupiter unstake (unsigned transactions).

Operations

Autocompound

Enable or disable auto-compounding for native stake accounts (unsigned transactions).

Operations

send_transaction

Broadcast a signed transaction on-chain.

Operations

Send Transaction

Request

Accepts a fully signed transaction serialized to wire format, as hex (txn). The server calls Solana sendRawTransaction and returns the base58 signature.

Use this after signing any unsigned txn returned from native/liquid staking endpoints (or Jupiter unstake).

Bodyapplication/jsonrequired
txnstringrequired

Signed transaction bytes serialized to wire format, as hexadecimal.

curl -i -X POST \
  https://api.rakurai.io/api/v1/send-txn \
  -H 'Content-Type: application/json' \
  -d '{
    "txn": "010203…full signed wire bytes as hex…"
  }'

Responses

Transaction submitted; signature in txn_signature when successful.

Bodyapplication/json
One of:
txn_signaturestringrequired

Base58 Solana transaction signature.

Response
application/json
{ "txn_signature": "5VERv8NMvzbJMEkV8xnrLkEaWRtSz9CosKDYjCJjBRnbJLgp8uirBgmQpjKhoR4tjF3ZpRzrFmBV6UjKdiSZkQUW" }

Rakurai Scheduler

List scheduler versions and download the scheduler archive (authenticated).

Download with curl using -o to save the .tar.gz, and --fail-with-body || cat <file> so HTTP errors return JSON instead of a corrupt archive.

Operations

Validator Stats

Validators list, TVL, APY, TPS, rewards, overview.

Operations