Skip to main content
GET
/
v1
/
flow
/
vectordb
List vector databases
curl --request GET \
  --url https://flow.seekr.com/v1/flow/vectordb \
  --header 'Authorization: <api-key>'
{
  "object": "<string>",
  "data": [
    {
      "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
    }
  ]
}
Retrieve a paginated list of ingestion jobs for a specific vector database. Each job includes its current status and file_records with per-file tracking. For details on interpreting job states and file records, see Monitor ingestion.

Authorizations

Authorization
string
header
required

Seekr API Key without 'Bearer' Prefix

Query Parameters

types
enum<string>[] | null
Available options:
RAG,
explainability

Response

Successful Response

object
string
required
Allowed value: "list"
data
VectorDatabaseResponse · object[]
required
Last modified on June 18, 2026