v44

latestOpenAPI 3.1.0raw.githubusercontent.com2026-05-20129390589.6 KB
Account

Get current account information

Retrieves detailed information about the currently authenticated account.

This endpoint returns:

  • Account ID
  • Account status and permissions (role, KYC level, frozen status)
  • Account metadata (creation date, waitlist status)

Use this endpoint to:

  • Display user profile information
  • Check account permissions and limits
  • Verify KYC status before performing restricted operations
  • Determine feature availability based on account role
get/v1/account/me

Response

Account information retrieved successfully

idstring required

The unique identifier for the account

rolestring required

The role assigned to this account

is_frozenboolean required

Whether the account is currently frozen

kycstring required

The KYC (Know Your Customer) verification level

submitted_waitlistboolean required

Whether the user has submitted the waitlist form

waitlistboolean required

Whether the user is on the waitlist

kycb_form_submittedboolean required

Whether the KYC-B form has been submitted

created_atinteger required

When the account was created as a epoch unix timestamp

Example response

{
  "id": "gmail-com-name",
  "role": "user",
  "kyc": "basic",
  "submitted_waitlist": true,
  "created_at": 1749704176
}