REST API

Database to REST API & SDK

Auto generated REST API & SDK from database schema. Change schema on the fly! SDK for better developer experience.
REST API

Never write basic API again

We introspect your database schema within Kontenbase and provide the APIs & SDK instantly. So you can focus on building your product. Let Kontenbase handle the CRUD!
1
import { KontenbaseClient } from '@kontenbase/sdk'
2
3
const kontenbase = new KontenbaseClient({ apiKey: 'abcdefghijk123456789' })
4
5
const { data, error } = await kontenbase.service('articles').create({
6
title: 'My First Post',
7
content: 'Hello this is the first post.',
8
category: 'abcdefghijk123456789' // link to other service by id
9
})