Registration
There are two ways to create a Transfer Edge account: manually through the Dashboard, or programmatically via the /api/v1/register endpoint.
Both methods create a fully functional corporate account with API keys, a deposit address, and internal TFN/TFU balances.
Dashboard Registration
- Go to the Transfer Edge Dashboard and sign up with your email.
- Verify your email via the confirmation link.
- After logging in, you will receive your RPC URL, API keys, and deposit address.
- Top up your account by sending TRX or USDT to the provided deposit address.
Agentic Registration (API)
For automated or programmatic onboarding, use the POST /api/v1/register endpoint.
This allows you to register a new account by submitting a signed (but not yet broadcasted) deposit transaction along with an email address. The system broadcasts the transaction, creates the account, credits the deposited balance, and returns API keys and a temporary password — all in a single call.
Key differences from Dashboard registration:
| Dashboard | API (/v1/register) | |
|---|---|---|
| Deposit | After registration | Part of registration |
| Email verification | Required before access | Account works immediately; verify later |
| API keys | Available in Dashboard | Returned in the response |
Accounts created via /v1/register are fully operational before email verification. The GET /api/v1/config endpoint will include a notice array with a reminder to verify the email until verification is complete.
After Registration
Regardless of how the account was created:
- Use the Spender API key for operations that spend balance (broadcasting transactions, creating coupons).
- Use the Non-Spender API key for read-only operations (checking config, viewing orders).
- Monitor your balance via
GET /api/v1/configand top up as needed.