Collections

List all collections

GET
Returns a list of all existing collections.

Response

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