Docs/Documentation/Connect framework

Connect with Cli

Get started with Repull using Cli. Install the SDK and make your first API call in minutes.

1

Install

npm install @repull/sdk
2

Initialize

import { Repull } from '@repull/sdk'

const repull = new Repull({
  apiKey: process.env.REPULL_API_KEY,
  workspaceId: process.env.REPULL_WORKSPACE_ID,
})
3

Make your first call

const properties = await repull.properties.list()
console.log(properties)
AI