GET
https://api.unifically.com
/
account
Account Information
curl --request GET \
  --url https://api.unifically.com/account \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "code": 123,
  "data": {
    "user_id": 123,
    "balance_usd": 123,
    "email": "<string>",
    "created_at": 123,
    "updated_at": 123
  }
}
Retrieve detailed information about your account, including balance, email, timestamps, and restrictions.

Request

curl --location 'https://api.unifically.com/account' \
--header 'Authorization: Bearer YOUR_API_KEY'

Response

Success Response

{
    "success": true,
    "code": 200,
    "data": {
        "user_id": 12345,
        "balance_usd": 100.50,
        "email": "[email protected]",
        "created_at": 123,
        "updated_at": 123,
    }
}

Response Fields

success
boolean
Indicates whether the request was successful (true) or failed (false)
code
integer
HTTP status code (200 for success)
data
object
Account information
user_id
integer
Unique user identifier
balance_usd
decimal
Current account balance in USD
email
string
Account email address
created_at
integer
Unix timestamp of account creation
updated_at
integer
Unix timestamp of last account update

Authentication

All requests require a valid API key in the Authorization header:
Authorization: Bearer YOUR_API_KEY
Get your API key from the Unifically Dashboard.