Getting Started
Quick start guide to get you up and running with Dendrer
What is Dendrer?
Dendrer is a developer-friendly platform to deploy and personalize open-source AI models. With Dendrer, you can fine-tune models on your own data and instantly get versioned API endpoints, SDKs, and preview URLs—without managing GPUs.
Sign Up and Get Your API Key
1. Visit dendrer.com and click 'Get Started'
2. Create an account with your email
3. Navigate to the API Keys section
4. Generate your first API key
5. Copy the key and keep it secure
Your First Request
Here's a simple example using curl to test your API key:
curl -X POST https://api.dendrer.com/v1/inference \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "mistral-7b-instruct",
"input": "Hello, world!"
}'