---
title: "Register new user"
method: POST
path: "/api/auth/email-password/sign-up"
tags: ["Email Password Plugin"]
---

# Register new user

`POST /api/auth/email-password/sign-up`

Registers a new user with email and password

## Request body

- SignUpRequest
  - `callback_url` string, nullable
  - `email` string, required
  - `image` string, nullable
  - `metadata` object, nullable
  - `name` string, required
  - `password` string, required

## Response `201`

Created

- SignUpResponse
  - `session` Session, required
    - `created_at` string, date-time
    - `expires_at` string, date-time
    - `id` string
    - `ip_address` string, nullable
    - `token` string
    - `updated_at` string, date-time
    - `user_agent` string, nullable
    - `user_id` string
  - `user` User, required
    - `created_at` string, date-time
    - `email` string
    - `email_verified` boolean
    - `id` string
    - `image` string, nullable
    - `metadata` object, nullable
    - `name` string
    - `updated_at` string, date-time

## Changes

- **2026-07-08** `03c0b81270ce` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/authula/apis/authula-api/changes/api/auth/email-password/sign-up/post.md)

---

[API](https://skmtc.dev/authula/apis/authula-api.md) · [All operations](https://skmtc.dev/authula/apis/authula-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/authula/authula-api/revisions/ee53eca042f6/schema)
