Signup
Developing
POST
/auth/signup
auth
1.
2.
3.
4.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/auth/signup' \
--header 'Content-Type: application/json' \
--data-raw '{
"username": "string",
"email": "string",
"password": "string",
"name": "string",
"age": "string"
}'
Response Response Example
201 - 201 User Created Success
{
"message": "User Created Successfully",
"user_id": 123
}
Request
Header Params
Content-Type
string
optional
Example:
application/json
Body Params application/json
Responses
Modified at 2025-06-20 16:02:54