API Playground

Try the SDK Query Builder and test the API

Query settings
SDK Code
import { createBrowserClient } from '@01.software/sdk'

const client = createBrowserClient({
  clientKey: 'your-client-key',
})

const { docs, totalDocs } = await client
  .from('products')
  .find({ limit: 5, sort: '-createdAt', depth: 1 })
Response
Press "Execute" to test the API