-
Notifications
You must be signed in to change notification settings - Fork 0
Home
timdev edited this page Jan 14, 2026
·
1 revision
Welcome to the Wiki for closecrm-node — a modern Node.js wrapper for the Close.com REST API.
This Wiki is structured so you can quickly see:
- which resources exist (Leads, Contacts, Activities, …)
- which methods the client exposes (search/list/read/create/update/delete)
- how pagination, rate limits, and error handling work
- Getting Started
- Authentication
- Client Basics (Requests, Params, Retries)
- Pagination
- Error Handling & Rate Limits
- Resources (Overview)
Create a client once, then use the resource objects:
const Closecom = require('closecrm-node');
const api = new Closecom(process.env.CLOSE_API_KEY);
const me = await api.user.me();
const leads = await api.lead.search({ query: 'company:"Acme"', limit: 100 });Note: The official Close documentation is at https://developer.close.com