Skip to main content
POST
/
v1
/
auth
/
signup
Agent signup
curl --request POST \
  --url https://reelmirror.com/api/v1/auth/signup \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "jsmith@example.com",
  "password": "<string>"
}
'
{
  "data": {
    "status": "pending_confirmation",
    "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  }
}

Body

application/json
email
string<email>
required

The agent's email address — must be a real inbox the agent can read to confirm the account

password
string
required

Strong random password (min 8 chars). Store securely; a human can use 'forgot password' on the dashboard if needed

Minimum string length: 8

Response

Account created — awaiting email confirmation

data
object