Skip to main content
POST
/
v1
/
flow
/
vectordb
Create vector database
curl --request POST \
  --url https://flow.seekr.com/v1/flow/vectordb \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "model": "<string>",
  "description": "<string>",
  "db_type": "RAG"
}
'
{
  "id": "<string>",
  "name": "<string>",
  "model": "<string>",
  "dimension": 123,
  "description": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "file_count": 123,
  "size_in_bytes": 123
}

Authorizations

Authorization
string
header
required

Seekr API Key without 'Bearer' Prefix

Body

application/json
name
string
required

Name of the vector database

model
string
required

Model used to generate the vectors

description
string | null

Optional description

db_type
enum<string> | null
default:RAG

Type of vector database to create

Available options:
RAG,
explainability

Response

Successful Response

id
string
required
name
string
required
model
string
required
dimension
integer
required
description
string | null
required
created_at
string<date-time>
required
updated_at
string<date-time>
required
file_count
integer
required
db_type
enum<string> | null
required
Available options:
RAG,
explainability
size_in_bytes
integer | null
Last modified on June 18, 2026