-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started
timdev edited this page Jan 14, 2026
·
1 revision
This guide gets you from zero to your first API call.
- Node.js 18+ (this library uses the native
fetch())
npm install closecrm-nodeconst Closecom = require('closecrm-node');
const api = new Closecom(process.env.CLOSE_API_KEY);const me = await api.user.me();
console.log(me);-
CommonJS entry (
require('closecrm-node')) - Resources grouped by name, e.g.
api.lead,api.contact,api.activity.note - Built-in retry behavior for 429 Too Many Requests (rate limiting)