Skip to main content
GET
/
v1
/
me
Get authenticated user
curl --request GET \
  --url https://api.example.com/v1/me \
  --header 'Authorization: Bearer <token>'
{
  "createdAt": "<string>",
  "email": "<string>",
  "firstName": "<string>",
  "id": "<string>",
  "jobTitle": "<string>",
  "languageCode": "<string>",
  "lastName": "<string>",
  "organization": {
    "brandImageUrl": "<string>",
    "brandName": "<string>",
    "createdAt": "<string>",
    "credits": {
      "aiWriting": 123,
      "analysis": 123,
      "contentIdeasSearches": 123
    },
    "id": "<string>",
    "name": "<string>",
    "usersCount": 123,
    "workspacesCount": 123
  },
  "profileImageUrl": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://developers.semji.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key starting with sk_. Generate one in Settings > API Keys.

Response

200 - application/json

Default Response

createdAt
string
required

ISO 8601 creation date.

email
string
required

Email address.

firstName
string | null
required

First name.

id
string
required

Unique identifier of the user.

jobTitle
string | null
required

Job title (max 10 chars).

languageCode
string | null
required

Preferred language (ISO 639-1).

lastName
string | null
required

Last name.

organization
object
required

Organization linked to the API key.

profileImageUrl
string | null
required

URL of the profile image.