curl https://api.60db.ai/auth/me \
-H "Authorization: Bearer your-api-key"
const profile = await client.getProfile();
profile = client.get_profile()
{
"id": "user-123",
"email": "user@example.com",
"name": "John Doe",
"company": "Acme Inc",
"plan": "pro",
"created_at": "2026-01-15T10:00:00Z"
}
Authentication
Get Profile
Get the authenticated user’s profile
GET
/
auth
/
me
curl https://api.60db.ai/auth/me \
-H "Authorization: Bearer your-api-key"
const profile = await client.getProfile();
profile = client.get_profile()
{
"id": "user-123",
"email": "user@example.com",
"name": "John Doe",
"company": "Acme Inc",
"plan": "pro",
"created_at": "2026-01-15T10:00:00Z"
}
Request
Headers
string
required
Bearer token with your API key
Response
string
User ID
string
User email
string
User name
string
Company name
string
Current subscription plan
string
Account creation timestamp
curl https://api.60db.ai/auth/me \
-H "Authorization: Bearer your-api-key"
const profile = await client.getProfile();
profile = client.get_profile()
{
"id": "user-123",
"email": "user@example.com",
"name": "John Doe",
"company": "Acme Inc",
"plan": "pro",
"created_at": "2026-01-15T10:00:00Z"
}