Account Information
Retrieve your account information with api key
Here's a response example shown in a simplified format:
To query the API and obtain information, you can make a request as shown below:
curl --location 'https://api.unifically.com/balance' \
--header 'Authorization: Bearer YOUR_API_KEY'
{
"success": boolean
"data": {
"user_id": integer
"balance_usd": decimal
"api_enabled": boolean
"email": email
"created_at": timestamp
"updated_at": timestamp
}
}
Last updated