Getting Started

Getting Started

This guide will help you get started with the Tewdy platform.

Prerequisites

Before you begin, make sure you have:

  • Node.js 18 or later installed
  • A Tewdy account (sign up at https://tewdy.com)
  • Your API credentials

Installation

Install the Tewdy SDK for your preferred language:

# npm
npm install @tewdy/sdk
 
# yarn
yarn add @tewdy/sdk
 
# pnpm
pnpm add @tewdy/sdk

Quick Start

Here’s a simple example to get you started:

import { TewdyClient } from '@tewdy/sdk'
 
const client = new TewdyClient({
  apiKey: 'your-api-key'
})
 
// Make your first API call
const response = await client.users.list()
console.log(response)

Next Steps