Getting Started

Learn how to integrate and use the Nino360 platform in your applications

Introduction

Welcome to Nino360! This guide will walk you through the initial setup and help you get started with building powerful applications using our platform.

Prerequisites

Before you begin, make sure you have:

  • Node.js 18.x or later installed
  • A Nino360 account (sign up at nino360.com)
  • Basic knowledge of React and Next.js
  • Your API keys from the dashboard

Installation

Install the Nino360 SDK in your project:

npm install @nino360/sdk

Quick Start

Here's a simple example to get you started:

import { Nino360Client } from '@nino360/sdk'

const client = new Nino360Client({
  apiKey: process.env.NINO360_API_KEY
})

async function fetchData() {
  const response = await client.getData()
  console.log(response)
}

Configuration

Configure your environment variables:

NINO360_API_KEY=your_api_key_here
NINO360_API_URL=https://api.nino360.com

Next Steps

Now that you have Nino360 set up, explore these resources:

API Reference
Explore the complete API documentation
Advanced Guides
Learn advanced features and best practices