Base URL
http://localhost:3005/api
Production deployments should use the same path prefix on the deployed host.
Frontend Integration Reference
Every route exposed by the current Nest API, including purpose, authentication, request payloads, query parameters, success examples, and common failure responses.
http://localhost:3005/api
Production deployments should use the same path prefix on the deployed host.
Authorization: Bearer <accessToken>
JWT protected routes require the access token returned by login, register, Google auth, reset, or refresh.
whitelist + forbidNonWhitelisted
Unknown body and query fields are rejected. Numeric query values are transformed where the DTO declares them.
{
"statusCode": 400,
"message": ["Password must be at least 6 characters"],
"error": "Bad Request"
}
{
"statusCode": 401,
"message": "No token provided",
"error": "Unauthorized"
}
{
"statusCode": 403,
"message": "This account cannot perform that action",
"error": "Forbidden"
}
{
"statusCode": 404,
"message": "Resource not found",
"error": "Not Found"
}