Inference API
Make predictions with your models
Endpoint
POST /v1/inference
Required Parameters
• model: Model ID for inference
• input: Data sent to the model
Example Request
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": "Write a haiku about neural networks",
"max_tokens": 100,
"temperature": 0.7
}'