Skip to main content

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

  1. Go to the Transfer Edge Dashboard and sign up with your email.
  2. Verify your email via the confirmation link.
  3. After logging in, you will receive your RPC URL, API keys, and deposit address.
  4. 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:

DashboardAPI (/v1/register)
DepositAfter registrationPart of registration
Email verificationRequired before accessAccount works immediately; verify later
API keysAvailable in DashboardReturned in the response
info

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/config and top up as needed.