cURL
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 your account information and usage statistics
curl --location 'https://api.unifically.com/account' \ --header 'Authorization: Bearer YOUR_API_KEY'
{ "success": true, "code": 200, "data": { "user_id": 12345, "balance_usd": 100.50, "email": "[email protected]", "created_at": 123, "updated_at": 123, } }
true
false
Authorization: Bearer YOUR_API_KEY