v1
latestOpenAPI 3.1.02026-07-247601.0 MBGet Current User Profile
This endpoint doesn't consume Apollo credits. Learn more about API pricing and credits.
<a href="https://knowledge.apollo.io/hc/en-us/articles/4409130537101-Add-Manage-and-Deactivate-Users" target="_blank">Users</a> are the people who use your Apollo workspace.<br><br>Use the Get Current User Profile endpoint to retrieve the authenticated profile of the person who owns the API key being used.<br><br>By default, the endpoint returns the user's identity fields. Set the include_credit_usage query parameter to true to also return the user's and team's credit usage and remaining credit balances.<br><br>If you call this endpoint without valid access credentials, you receive a 401 response.
Query parameters
Set to true to include credit usage and remaining credit details (lead, direct dial, export, AI, and power-up credits) in the response. Accepts boolean (true/false) or string ("true"/"false") values. Defaults to false. <br><br>Example: true
Response
200
Example response
{
"id": "66c8db577ed7f201b25c0eef",
"team_id": "6095a710bd01d100a506d4ac",
"first_name": "John",
"last_name": "Doe",
"title": "Developer",
"email": "john.doe@example.com",
"num_credits_remaining": 9500,
"effective_num_lead_credits": 10000,
"num_lead_credits_used": 500,
"effective_num_direct_dial_credits": 1000,
"num_direct_dial_credits_used": 120,
"effective_num_export_credits": 5000,
"num_export_credits_used": 250,
"effective_num_ai_credits": 2000,
"num_ai_credits_used": 75,
"effective_num_power_up_credits": 1000,
"num_power_up_credits_used": 40,
"total_unified_credits_used": 910
}