Skip to main content
POST
/
auth
/
signup
Sign up
curl --request POST \
  --url https://api.buildwithtrace.com/api/v2/auth/signup \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "user@example.com",
  "password": "your_password",
  "full_name": "John Doe"
}
'
{
  "access_token": "<string>",
  "refresh_token": "<string>",
  "token_type": "bearer",
  "user": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "email": "jsmith@example.com",
    "full_name": "<string>",
    "plan": "free",
    "avatar_url": "<string>",
    "created_at": "2023-11-07T05:31:56Z"
  }
}

Body

application/json
email
string<email>
required
Example:

"user@example.com"

password
string
required
Example:

"your_password"

full_name
string
required
Example:

"John Doe"

Response

Account created

access_token
string
refresh_token
string
token_type
string
Example:

"bearer"

user
object