Quickstart
Get started with Picadabra in 2 minutes.
Install
npm install @picadabra/clientCreate Client
import { } from '@picadabra/client'
const = ({
: 'your-api-key', // or async () => getToken()
})Make Requests
// Get user profile
const = await ..()
// Submit background task
const { } = await ..({
: 'process',
: { : 'hello' },
})
// Upload file
const = new (['content'], 'test.txt')
const = await ..({ })
// Check API health
const = await .()Next
How is this guide?