Retrieve the authenticated user profile information
cURL
curl --request GET \ --url https://frontend-api-v3.pump.fun/auth/my-profile \ --header 'Accept: <accept>' \ --header 'Authorization: <authorization>' \ --header 'Origin: <origin>'
{ "200": {}, "401": {}, "403": {}, "id": "<string>", "username": "<string>", "email": "<string>", "createdAt": "<string>", "updatedAt": "<string>" }
Authorization: Bearer <token>
Authorization: Bearer <your_jwt_token>
Accept: application/json
Origin: https://pump.fun
curl -X GET "https://frontend-api-v3.pump.fun/auth/my-profile" \ -H "Authorization: Bearer <your_token>" \ -H "Accept: application/json" \ -H "Origin: https://pump.fun"
{ "statusCode": 401, "message": "Unauthorized" }
{ "statusCode": 403, "message": "Forbidden resource" }