Skip to main content
POST
/
api
/
v1
/
auth
/
verify-email
Verify Email
curl --request POST \
  --url https://roughy-api-staging.fly.dev/api/v1/auth/verify-email \
  --header 'Content-Type: application/json' \
  --data '
{
  "token": "example-verification-token-from-email-link"
}
'
{
  "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
token
string
required
Required string length: 16 - 256

Response

Successful Response

Returned on successful email verification.

Same shape as SignupResponse so the frontend can use either interchangeably to update its "current user" cache. No API key yet -- the user must call /auth/login to receive a session key (verification proves email ownership but not password knowledge; the two are intentionally separate steps).

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