> ## Documentation Index
> Fetch the complete documentation index at: https://kiran.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Sign up 1

> Create a new user account.

### Body

<ParamField body="email" type="string" required="true">
  Email address of the user.
</ParamField>

<ParamField body="password" type="string" required="true">
  Password of the user.
</ParamField>

<ParamField body="firstName" type="string" required="true">
  First name of the user.
</ParamField>

<ParamField body="lastName" type="string" required="true">
  Last name of the user.
</ParamField>

<RequestExample>
  ```bash Request
  curl --location --request POST 'http://localhost:3005/api/auth/signup' \
  --header 'Accept: application/json' \
  --data '{
    "email": "kiran@example.com",
    "password: "secret-password",
    "firstName": "John",
    "lastName": "Doe"
  }'
  ```
</RequestExample>

<ResponseExample>
  ```json Response
  {
    "data": {
      "id": 10,
      "email": "kiran@example.com",
      "firstName": "John",
      "lastName": "Doe",
      "createdAt": "2023-07-02T18:03:23.658Z",
      "updatedAt": "2023-07-02T18:03:23.658Z"
    }
  }
  ```
</ResponseExample>
