For the complete documentation index, see llms.txt. This page is also available as Markdown.

Celigo CLI

The Celigo CLI (@celigo/celigo-cli) is a first-party command-line tool for driving integrator.io. Anything you can do with the REST API you can do with celigo <cmd>, with profiles, safer writes, and account-wide utilities.

  • Package: @celigo/celigo-cli on npm

  • Binary: celigo

  • Requires: Node.js 22+

  • License: MIT

Quickstart

To get started quickly, install the CLI and authenticate using a Celigo API token.

# 1. Install
npm install -g @celigo/celigo-cli

# 2. Point at an account
export CELIGO_API_TOKEN="<paste>"

# or, for multiple accounts:
celigo profile add prod --api-token "$PROD_TOKEN" --api-base-url https://api.integrator.io
celigo profile add eu   --api-token "$EU_TOKEN"   --api-base-url https://api.eu.integrator.io
celigo profile use prod

# 3. Do something
celigo integrations list --format table
celigo flows list --jq '.[] | {_id, name, disabled}'

Installing globally also sets up AI assistant skills for Claude Code, Cursor, and Windsurf — so your AI assistant can give grounded answers about integrator.io.

Command reference

One page per resource. Every subcommand lists its arguments and flags; commands that call the REST API link to the corresponding OpenAPI spec.

Last updated

Was this helpful?