Developer Documentation

Comprehensive guides and API references for building with nilllba.

curl https://api.nilllba.io/v1/authenticate -u "your_api_key"

Get started in under 2 minutes by authenticating with your API key.

Response:
{
  "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9",
  "expires_in": 3600,
  "token_type": "Bearer"
}
            

Getting Started

🚀

Installation

Learn how to integrate our SDK into your project using npm or CDN.

🎯

Authentication

Understand API key management and OAuth2 token workflows.

🔌

API Reference

Explore our full REST API endpoints with request/response examples.

Guides

Creating Your First Application

In this guide, you'll learn to build a simple application using our core API endpoints. We'll cover authentication, making your first request, and interpreting responses.

  • Set up developer account
  • Create API credentials
  • Make your first API call
  • Interpret response data
npm install nilllba-sdk

Example SDK import

import Nilllba from 'nilllba-sdk' const client = new Nilllba("YOUR_API_KEY")

API Endpoints

GET /api/v1/status

Check service availability and version

200 OK
curl -X GET https://api.nilllba.io/v1/status
Response Body:
{
  "status": "healthy",
  "version": "2.0.1",
  "uptime": 86400
}