Get Started

  • Installation

  • Configuration

  • Authentication

  • Embedding

API References

  • Create new chatPOST

  • Get conversation historyGET

Installation

equilAI provides advanced AI capabilities through a simple, intuitive interface. Get started quickly by installing our SDK or accessing our API directly.

SDK Installation

Install our SDK packages for the quickest integration with your applications. We officially support JavaScript and Python.

API Access

For other languages, use our RESTful API with any HTTP client. All features are accessible via API endpoints.

Installation & Quick Start

// Install via npm npm install equilai-sdk // Import in your project import { EquilAI } from 'equilai-sdk'; // Initialize with your API key const equilai = new EquilAI({ apiKey: 'your_api_key_here' }); // Make a request const response = await equilai.analyze("Your text to analyze"); console.log(response);

Authentication

All requests to equilAI require authentication using an API key. You can generate an API key from your equilAI dashboard.

Important Security Notes

  • Never expose your API key in client-side code.

  • Use environment variables to store your API key.

  • Rotate your API keys periodically for enhanced security.

Next Steps

Explore API Reference

Discover all available endpoints and request parameters in our comprehensive API documentation.

View Examples

Check out code examples and sample projects to get inspired for your implementation.