Development environment
The sandbox is an isolated environment for testing and development, without affecting production.
Last updated
The sandbox is an isolated environment for testing and development, without affecting production.
UR provides a sandbox environment for integration development and testing.
Base URL: https://urapi2-qa.ur-inc.xyz
KYC data on testnet is mocked. Identity verification results are simulated and do not reflect real compliance outcomes. After completing the KYC flow on testnet, your test users will not be automatically approved; contact support@ur.app or your dedicated integration channel to have test accounts manually moved to Live status.
UR exposes two API surfaces:
Server-to-server calls authenticated with your partner wallet signature. Use these for operations that apply to both integration modes:
Minting URIDs
Querying user profiles and balances
Fetching transaction history
Base URL (production): https://openapi.ur.app
Endpoints specific to your chosen integration mode:
Managed Custody Mode: Off-ramp, on-ramp (coming soon), FX, payout, card; all via partner-signed REST calls
External Wallet Access: User registration, KYC flow, card, off-ramp, on-ramp (coming soon), FX, payouts
Base URLs (production):
Managed Custody Mode
https://openapi.ur.app
External Wallet Access
https://api.ur.app
All endpoints return JSON with this structure:
A code of 0 indicates success. Non-zero codes indicate errors.
Last updated
{
"code": 0,
"message": "success",
"data": { }
}