Skip to main content

Sandbox Environment

Test your RebelFi integration without deploying real funds.

Getting Started

1

Request a Demo

Request a demo — sandbox access is included with every account.
2

Get Your Sandbox API Key

Your sandbox API key has the prefix rfk_sandbox_. Generate one from Settings → API Keys in the dashboard.
3

Configure Your Client

Point your SDK or API calls at the sandbox environment.

SDK Configuration

import { RebelfiClient } from '@rebelfi/sdk';

const client = new RebelfiClient({
  apiKey: 'rfk_sandbox_xxxxxxxxxxxxx',
  sandbox: true
});

Base URL

https://sandbox-api.rebelfi.io/v1
For direct API calls, use the sandbox base URL:
curl -X GET "https://sandbox-api.rebelfi.io/v1/venues" \
  -H "x-api-key: rfk_sandbox_xxxxxxxxxxxxx"

What’s Available in Sandbox

  • Test venues and strategies on supported blockchains
  • Simulated yield accrual
  • Full API/SDK functionality
  • All operation types (supply, unwind)

Test Networks

BlockchainTestnet
SolanaDevnet
EthereumSepolia
PolygonAmoy

Switching to Production

When you’re ready to go live, update your configuration:
const client = new RebelfiClient({
  apiKey: 'rfk_prod_xxxxxxxxxxxxx'
  // sandbox defaults to false — production is the default
});
Contact team@rebelfi.io for sandbox setup assistance.