Developer Documentation
Everything you need to integrate MiniAI Labs into your applications
API Reference
Endpoints
GET
/api/v1/assistant/query
Send a query to the AI assistant
Example Request
curl -X GET \
https://api.miniailabs.com/api/v1/assistant/query \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"Example Response
{
"status": "success",
"data": {
"id": "123456",
"result": "Sample response data"
}
}