Installation

Set up the Export API client in your project.

Install the official client in your project to export data from your workspaces.

Install

Install the client using your preferred package manager:

npm
npm install @croct/export

Initialize

Initialize the client by providing your API key:

1234567
import {Configuration, ExportApi} from '@croct/export';
const api = new ExportApi(  new Configuration({    apiKey: '<API KEY>'  }));

Check out the API reference for all available options and methods.