Developer Docs

Introduction

Welcome to the Getting Started guide for our platform. This document will walk you through everything you need to begin building powerful applications with our APIs.

Prerequisites

  • Node.js >= 18
  • Git
  • A text editor (VS Code recommended)

Setup

Clone the starter repository and install dependencies:

git clone https://github.com/example/starter-kit.git
cd starter-kit
npm install

Your First Code

Create a file index.js and add the following snippet:

const client = require('example-sdk');

async function main() {
  const result = await client.helloWorld();
  console.log('Response:', result);
}

main().catch(console.error);

Run the script:

node index.js

Next Steps