VoxLink.ai

API Reference

Get current user

Get the authenticated user's profile information

Updated 25 Jan 2026
On this page

This endpoint returns the profile information for the currently authenticated user, including their account balance.

Response

namestring

The user's full name

emailstring

The user's email address

total_balancenumber

The user's current account balance in USD

{
  "name": "John Doe",
  "email": "john.doe@example.com",
  "total_balance": 125.50
}

Use Cases

This endpoint is useful for:

  • Verifying authentication - Confirm the API key is valid and belongs to the expected user
  • Checking account balance - Monitor available credits before making API calls
  • Displaying user info - Show the current user in your application's UI

Related guides