Skip to main content
POST
/
api
/
v1
/
users
Create User
curl --request POST \
  --url https://colloqui-web-develop-btoadh.laravel.cloud/api/v1/users \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "b",
  "email": "zbailey@example.net",
  "password": "-0pBNvYgxw"
}
'
{
  "data": {
    "id": "01kqh44b7g7anh4nrycctha1ym",
    "name": "Jane Smith",
    "email": "antonio24@example.net",
    "created_at": "2026-05-01T06:38:00.000000Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.colloqui.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer token authentication

Body

application/json
name
string
required

Must not be greater than 255 characters.

Example:

"b"

email
string
required

Must be a valid email address.

Example:

"zbailey@example.net"

password
string
required

Must be at least 8 characters.

Example:

"-0pBNvYgxw"

Response

201 - application/json
data
object