Testnet Faucet
Free testnet XRP for development. Testnet XRP has no value.
Request XRP
curl -X POST https://api.xrpl.to/v1/faucet \
-H "Content-Type: application/json" \
-d '{"destination": "rYourTestnetAddress…"}'
// → { "success": true, "hash": "…", "destination": "rYourTestnetAddress…", "amount": 200, "cooldownHours": 24 }GET /v1/faucet returns the faucet’s own address, balance and default amount.
Limits
| Network | wss://s.altnet.rippletest.net:51233 |
| Amount | 200 XRP per request, or send "amount" (1–200) |
| Cooldown | One request per address every 24 hours |
| 400 | Missing or invalid destination address |
| 429 | Cooldown active (the body includes retryAfterSeconds), or the faucet is busy — retry in a few seconds |
| 503 | The faucet is out of XRP |