Auth

Authentication & Authorization

Built in basic authentication, 3rd party auth, and authorization like role management without coding. Fast and secure!
Auth

Auth API made easy

We provide auto generated Auth API that work on client and server-side applications.
1
import { KontenbaseClient } from '@kontenbase/sdk'
2
3
const kontenbase = new KontenbaseClient({ apiKey: 'abcdefghijk123456789' })
4
5
const { user, error } = await kontenbase.auth.register({
6
firstName: 'Your',
7
lastName: 'Name',
8
email: 'yourname@mail.com',
9
password: 'secure_your_password123',
10
})