Service

Retrieve instance details

GET
Returns details about the running Qdrant instance.

Response

This endpoint returns an object
time
doubleOptional
Time spent to process this request
status
stringOptional
result
objectOptional
GET
1curl http://localhost:6333/ \
2 -H "api-key: <apiKey>"
200Retrieved
1{
2 "time": 1.1,
3 "status": "status",
4 "result": {
5 "title": "title",
6 "version": "version",
7 "commit": "commit"
8 }
9}