Skip to main content
GET
/
me
Get Current User
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
}

Authentication

This endpoint requires an API token passed as a Bearer token in the Authorization header.
Authorization: Bearer YOUR_API_TOKEN
API tokens are created in the Dashboard under API Keys.

Request

curl -X GET "https://app.shipstar.ai/api/v1/me" \
  -H "Authorization: Bearer YOUR_API_TOKEN"

Response

id
string
required
The user’s unique identifier (UUID)
email
string
required
The user’s email address
first_name
string
The user’s first name
last_name
string
The user’s last name
is_active
boolean
required
Whether the user account is active
is_verified
boolean
required
Whether the user’s email has been verified

Example Response

200
{
  "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "email": "jane@example.com",
  "first_name": "Jane",
  "last_name": "Doe",
  "is_active": true,
  "is_verified": true
}

Errors

StatusDescription
401Invalid or expired API token