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"}'

Documentation Index

Fetch the complete documentation index at: https://docs.kymaapi.com/llms.txt

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

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"}'