Everstack

Register creates the first admin user (becomes instance owner) - Self-hosted only

POST/v1/auth/register
POST/v1/auth/register

Your instance endpoint, shown on the instance page in the dashboard. Each instance has its own host; there is no shared API host.

Request Body

PropertyTypeRequiredDescription
emailstringNo
passwordstringNo
namestringNo

Responses

200 Registration result with session

PropertyTypeDescription
successboolean
userobject
sessionTokenstring

default An unexpected error response.

PropertyTypeDescription
codeinteger
messagestring
detailsobject[]

Request

curl -X POST "http://localhost:8089/v1/auth/register" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"email":"string","password":"string","name":"string"}'
const response = await fetch("http://localhost:8089/v1/auth/register", {
  method: "POST",
  headers: {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
  "email": "string",
  "password": "string",
  "name": "string"
}),
});
const data = await response.json();
import requests

response = requests.post(
    "http://localhost:8089/v1/auth/register",
    headers={
        "Authorization": "Bearer YOUR_API_KEY",
        "Content-Type": "application/json",
    },
    json={
  "email": "string",
  "password": "string",
  "name": "string"
},
)
data = response.json()

Response

{
  "success": true,
  "user": {
    "user": {
      "id": "string",
      "email": "string",
      "name": "string",
      "avatarUrl": "string",
      "createdAt": "2024-01-01T00:00:00Z",
      "updatedAt": "2024-01-01T00:00:00Z"
    },
    "organizations": [
      {
        "id": "string",
        "slug": "string",
        "name": "string",
        "role": "ORGANIZATION_ROLE_UNSPECIFIED"
      }
    ]
  },
  "sessionToken": "string"
}
{
  "code": 0,
  "message": "string",
  "details": [
    {
      "@type": "string"
    }
  ]
}