Vector Database

List

GET
List all Vector Databases

Response

This endpoint returns an object
success
boolean
data
list of objectsOptional
Represents a VectorDb record
GET
1curl https://api.beta.superagent.sh/api/v1/vector-dbs \
2 -H "Authorization: Bearer <token>"
200
Retrieved
1{
2 "success": true,
3 "data": [
4 {
5 "id": "id",
6 "provider": "PINECONE",
7 "createdAt": "2024-01-15T09:30:00Z",
8 "updatedAt": "2024-01-15T09:30:00Z",
9 "apiUserId": "apiUserId",
10 "options": {
11 "key": "value"
12 },
13 "datasources": [
14 {
15 "id": "id",
16 "name": "name",
17 "type": "TXT",
18 "apiUserId": "apiUserId",
19 "createdAt": "2024-01-15T09:30:00Z",
20 "updatedAt": "2024-01-15T09:30:00Z",
21 "status": "IN_PROGRESS"
22 }
23 ],
24 "apiUser": {
25 "id": "id",
26 "createdAt": "2024-01-15T09:30:00Z",
27 "updatedAt": "2024-01-15T09:30:00Z"
28 }
29 }
30 ]
31}