Skip to main content
POST
/
v1
/
auth
/
register
curl -X POST https://kymaapi.com/v1/auth/register \
  -H "Content-Type: application/json" \
  -d '{"email": "you@email.com", "password": "your_password"}'
email
string
required
Your email address.
password
string
required
Password (min 6 characters).

Response

{
  "user_id": "abc123",
  "api_key": "kyma-your-new-api-key",
  "session_token": "ks-your-session-token"
}
curl -X POST https://kymaapi.com/v1/auth/register \
  -H "Content-Type: application/json" \
  -d '{"email": "you@email.com", "password": "your_password"}'