cURL
curl --request GET \ --url https://api.example.com/me
{ "id": "<string>", "email": "<string>", "first_name": "<string>", "last_name": "<string>", "is_active": true, "is_verified": true }
Retrieve the profile of the authenticated user
Authorization
Authorization: Bearer YOUR_API_TOKEN
curl -X GET "https://app.shipstar.ai/api/v1/me" \ -H "Authorization: Bearer YOUR_API_TOKEN"
{ "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890", "email": "jane@example.com", "first_name": "Jane", "last_name": "Doe", "is_active": true, "is_verified": true }
Was this page helpful?