Getting started

Request sandbox credentials, install the SDK, and make your first request in under five minutes.

1. Install

bash
npm install @pierflow/node

2. Authenticate

ts
import Pierflow from '@pierflow/node';

const pf = new Pierflow({ apiKey: process.env.PIERFLOW_KEY });

3. Your first call

ts
const plans = await pf.plans.list({ budget_ngn: 120000 });