curl -X POST https://api.60db.ai/auth/signup \
-H "Content-Type: application/json" \
-d '{
"email": "user@example.com",
"password": "SecurePass123",
"name": "John Doe"
}'
const user = await client.signUp({
email: "user@example.com",
password: "SecurePass123",
name: "John Doe",
});
user = client.sign_up(
email='user@example.com',
password='SecurePass123',
name='John Doe'
)
{
"user": {
"id": "user-123",
"email": "user@example.com",
"name": "John Doe",
"created_at": "2026-01-29T11:30:00Z"
},
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
}
Authentication
Sign Up
Register a new user account
POST
/
auth
/
signup
curl -X POST https://api.60db.ai/auth/signup \
-H "Content-Type: application/json" \
-d '{
"email": "user@example.com",
"password": "SecurePass123",
"name": "John Doe"
}'
const user = await client.signUp({
email: "user@example.com",
password: "SecurePass123",
name: "John Doe",
});
user = client.sign_up(
email='user@example.com',
password='SecurePass123',
name='John Doe'
)
{
"user": {
"id": "user-123",
"email": "user@example.com",
"name": "John Doe",
"created_at": "2026-01-29T11:30:00Z"
},
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
}
Request
Headers
string
required
application/json
Body
string
required
User’s email address
string
required
Password (minimum 8 characters)
string
User’s full name
string
Company name
Response
object
User object
string
User ID
string
User email
string
Authentication token
curl -X POST https://api.60db.ai/auth/signup \
-H "Content-Type: application/json" \
-d '{
"email": "user@example.com",
"password": "SecurePass123",
"name": "John Doe"
}'
const user = await client.signUp({
email: "user@example.com",
password: "SecurePass123",
name: "John Doe",
});
user = client.sign_up(
email='user@example.com',
password='SecurePass123',
name='John Doe'
)
{
"user": {
"id": "user-123",
"email": "user@example.com",
"name": "John Doe",
"created_at": "2026-01-29T11:30:00Z"
},
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
}