Developer Hub

Integrate LyDian AI into your applications. Comprehensive SDKs, API documentation, and code Get started in minutes with examples.

import { LyDian } from '@lydian/sdk'; const client = new LyDian({ apiKey: 'sk-lydian-...' }); const response = await client.chat.create({ model: 'lydian-turbo', messages: [{ role: 'user', content: 'Merhaba!' }] }); // DEBUG: console.log(response.content);

SDK Libraries

Use our official SDKs for your favorite programming language

Node.js

v2.1.0

Fully type-safe Node.js SDK with TypeScript support. Express, Next.js, and other framework'lerle uyumlu.

npm install @lydian/sdk
Download

Python

v2.0.5

Modern Python SDK with async/await support. Full integration with Django, Flask and FastAPI.

pip install lydian
Download

Go

v1.8.2

High-performance Go SDK. Optimized for production environments with concurrency support and minimal memory footprint.

go get github.com/lydian/sdk-go
Download

Quick Start

Make your first AI integration in 5 minutes

1

Get API Key

Create your API key from the Dashboard. Separate keys for each project kullanabilirsiniz.

# Create new key from API Keys section in Dashboard API_KEY="sk-lydian-..."
2

Install SDK

Install the SDK for your favorite programming language with your package manager.

# Node.js npm install @lydian/sdk # Python pip install lydian # Go go get github.com/lydian/sdk-go
3

Make Your First Call

Access AI models and start getting responses with just a few lines of code.

const { LyDian } = require('@lydian/sdk'); const client = new LyDian({ apiKey: process.env.LYDIAN_API_KEY }); async function main() { const response = await client.chat.create({ model: 'lydian-turbo', messages: [{ role: 'user', content: 'How to use LyDian API?' }] }); // DEBUG: console.log(response.content); } main();
4

Review Documentation

Our comprehensive documentation for API reference, code examples and best practices inceleyin.

API Documentation

📚 API Documentation

Comprehensive guides, concepts, tutorials ve best practices for LyDian platform

Smart Cities API

12 Docs Available

IoT sensors, metrics, alerts, traffic, energy ve smart city infrastructure documentation

📖 Guides (4) 🧠 Concepts (2) 🎯 Tutorials (1) 📝 Cookbooks (1)

Human IQ API

2 Docs Available

AI personas, skill assessments, learning paths, reasoning engine ve intelligent assistants

📖 Guides (2) 🧠 Concepts (Coming Soon) 🎯 Tutorials (Coming Soon) 📝 Cookbooks (Coming Soon)

LyDian IQ API

2 Docs Available

Knowledge graphs, signal processing, event correlation, reasoning workflows ve analytics

📖 Guides (2) 🧠 Concepts (Coming Soon) 🎯 Tutorials (Coming Soon) 📝 Cookbooks (Coming Soon)
View All Documentation →

Developer Community

Be part of the LyDian ecosystem with thousands of developers

GitHub Organizasyonu

Open source SDKs, sample projects and contribution opportunities

See on GitHub

Discord Community

Join our community for real-time support, discussions and networking

Join Discord

Blog & Tutorials

Comprehensive guides, case studies and best practices

Visit Blog