Installing Cloudglue

Follow the appropriate SDK installation instructions for your programming language below. Currently official Node and Python packages are available for Cloudglue.

npm install @aviaryhq/cloudglue-js 

Usage

To start using Cloudglue’s features, you’ll need to authenticate your requests with an API key. Here’s how to set it up:

  1. Get an API key from cloudglue.dev
  2. Set the API key as an environment variable named CLOUDGLUE_API_KEY or pass the api key in as a parameter to the CloudGlue class constructor.

Here’s an example of how to create a Cloudglue client:

import { CloudGlue } from '@aviaryhq/cloudglue-js';

const client = new CloudGlue({
apiKey: 'cg-your-api-key-here',
});