Storage

Object Storage

Organize files and assets with storage API. Attach, upload, and download them through the services. Store any files possible.
Storage

Simple Object Storage API

We provide storage api that you can use directly without coding and connect to third parties.
1
import { KontenbaseClient } from '@kontenbase/sdk'
2
3
const kontenbase = new KontenbaseClient({ apiKey: 'abcdefghijk123456789' })
4
5
const file = event.target.files[0] // or via FormData
6
const { data, error } = await kontenbase.storage.upload(file)