Documentation
Everything you need to integrate PandaLink into your applications.
Quick Start
# Install our SDK
npm install pandalink-sdk# Make your first request
import PandaLink from 'pandalink-sdk';
const client = new PandaLink({ apiKey: 'ak_live_xxxxx' });
const response = await client.chat.create({
model: 'qwen',
messages: [{ role: 'user', content: 'Hello!' }]
});Getting Started
Learn how to set up your account and make your first API call
Authentication
Understand how to authenticate your API requests
API Keys
Manage your API keys for secure access
Chat API
Send messages and receive AI-generated responses
Rate Limits
Understand usage limits and best practices
Examples
Code examples in various programming languages
API Reference
POST/v1/chat/completions
Create a chat completion using specified model
POST/v1/images/generations
Generate images from text descriptions
GET/v1/models
List all available models
GET/v1/models/{model}
Retrieve a specific model