Skip to main content
POST
/
auth
/
signup
Sign up
curl --request POST \
  --url https://app.autoposting.ai/api-proxy/auth/signup \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "user@example.com",
  "password": "SecurePass123!",
  "name": "Jane Doe"
}
'
{
  "success": true,
  "data": {
    "token": "sk-social-your-key",
    "user": {
      "id": "usr_01HXYZ",
      "email": "user@example.com",
      "name": "Jane Doe",
      "emailVerified": true
    }
  }
}

Authorizations

Authorization
string
header
required

API key as Authorization: Bearer sk-social-...

Body

application/json
email
string
required

User's email address.

Example:

"user@example.com"

password
string
required

Account password.

Example:

"SecurePass123!"

name
string

Display name for the user.

Example:

"Jane Doe"

Response

200 - application/json

Account created.

success
boolean
required
Example:

true

data
object
required