Retrieve current user's account details
This endpoint allows you to retrieve the details of the currently authenticated user's account.
Endpoint
GET /api/v1/account/Authentication
This endpoint requires authentication using a JWT token.
Request
No request parameters are required.
Response
{
"id": "user_id",
"email": "[email protected]",
"name": "User Name"
}User Profile (Extended Information)
For more detailed user profile information, you can use:
Extended Response
Error Responses
Status Code
Description
401
Unauthorized - Invalid or missing authentication credentials
403
Forbidden - User does not have permission to access this resource
500
Internal Server Error - Something went wrong on the server
Usage Example
Using cURL
Using JavaScript
Using Python
Last updated