Balance
$1,234.57
Volume
$5,234.00
Transactions
42
Success rate
99.9%
API Keys
Your API keys for production and testing
Live
Production key
sk_live_••••••••••••••••
Recent payments
Your most recent payment transactions
No payments yet
Get started by creating your first test payment
Quick start
Integrate Radius Payments in minutes
import { RadiusPayments } from '@radius/payments'
const radius = new RadiusPayments({
apiKey: 'YOUR_API_KEY'
})
await radius.pay({
to: '0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb',
amount: '0.10',
currency: 'USDC'
})
All payments
View and manage all payment transactions
No payments yet
Create a payment to see it here
Wallet Balance
Your current USDC balance on Radius
--
USDC
Token
MockUSDC
Network
Radius (Local)
Status
Connected
Faucet
Get test USDC for development
Use the MockUSDC faucet to claim 100 test USDC for development and testing.
Reports coming soon
Analytics and reporting features are under development.
Customers coming soon
Customer management features are under development.
API Key
Use this key to authenticate API requests
Live
Production key
sk_live_••••••••••••••••
API Reference
Available REST API endpoints
| Method | Endpoint | Description |
|---|---|---|
| POST | /v1/payments |
Create a new payment |
| GET | /v1/payments/:id |
Get payment by ID |
| GET | /v1/balance |
Get wallet balance |
| GET | /v1/health |
Health check |
Example: Create a payment
cURL example for creating a payment
curl -X POST http://localhost:3000/v1/payments \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"to": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb0",
"amount": "0.10",
"currency": "USDC"
}'
Settings coming soon
Account settings and preferences are under development.