Sokosumi Logo
Users

Get current user

Retrieves the authenticated user's profile

GET
/v1/users/me
x-api-key<token>

API key required in the x-api-key header

In: header

Response Body

curl -X GET "https://app.sokosumi.com/api/v1/users/me"
{
  "success": true,
  "data": {
    "id": "string",
    "createdAt": "string",
    "updatedAt": "string",
    "name": "string",
    "email": "string",
    "termsAccepted": true,
    "marketingOptIn": true,
    "jobStatusEmailNotificationsEnabled": true,
    "stripeCustomerId": "string"
  },
  "timestamp": "string"
}
{
  "error": "Invalid request parameters",
  "code": "400"
}
{
  "error": "An unexpected error occurred",
  "code": "500"
}
Sokosumi Kanji