v2.0.0 Public BetaSystems Operational
Last updated: Just now

Introduction

WaveSeed provides a unified API for integrating intelligent automation and analytics into your applications. This documentation will help you get started with our platform.

Quick Start

Install the official WaveSeed SDK for your platform. We support Node.js, Python, and Go out of the box.

# Install via npm
npm install @waveseed/sdk

# Or via yarn
yarn add @waveseed/sdk

Initialize the Client

Import the client and initialize it with your API key (obtained from the dashboard).

import { WaveSeed } from '@waveseed/sdk';

const client = new WaveSeed({
  apiKey: process.env.WS_API_KEY,
});

More Documentation