Picadabra Docs

Quickstart

Get started with Picadabra in 2 minutes.

Install

npm install @picadabra/client

Create 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?