Skip to main content
POST
/
api
/
v1
/
auth
/
signup
Signup
curl --request POST \
  --url https://roughy-api-staging.fly.dev/api/v1/auth/signup \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "alex@example.com",
  "password": "correct-horse-battery-staple"
}
'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "email": "<string>",
  "email_verified_at": "2023-11-07T05:31:56Z",
  "created_at": "2023-11-07T05:31:56Z"
}

Documentation Index

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

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

Body

application/json
email
string<email>
required
password
string
required
Required string length: 8 - 128

Response

Successful Response

Returned on successful signup.

Carries enough state for the frontend to navigate to a "check your inbox" view; no API key is minted at signup -- the user must verify their email and log in to get a session key.

id
string<uuid>
required
email
string
required
email_verified_at
string<date-time> | null
required
created_at
string<date-time>
required