Fumadocs

Create a user

POST
/user/signup

Time to create a user account, eh?

Request Body

User to create

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

curl -X POST "https://example.com/user/signup" \  -H "Content-Type: application/json" \  -d '{    "name": "Marc",    "email": "marc@scalar.com",    "password": "i-love-scalar"  }'
{  "id": 1,  "name": "Marc"}