Anaconda Vector DB API

The VectorDB API from Anaconda — 4 operation(s) for vectordb.

Operations 6

GET /api/vector-db/health Check the health of the vector database API
POST /api/vector-db Initialize the vector database
PATCH /api/vector-db Start or stop the vector database
GET /api/vector-db/tables Get all tables in the vector database
POST /api/vector-db/tables Create a new table in the vector database
DELETE /api/vector-db/tables/{tableName} Delete a table from the vector database

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/anaconda-vectordb-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

anaconda-vectordb-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AI Navigator Vector DB API
  version: 1.0.0
  description: API documentation for AI Navigator
servers:
- url: https://api.anaconda.cloud/api
  description: Base URL declared by the provider in apis.yml (roadmap#122).
security:
- bearerAuth: []
tags:
- name: VectorDB
paths:
  /api/vector-db/health:
    get:
      summary: Check the health of the vector database API
      tags:
      - VectorDB
      responses:
        '200':
          description: Vector database API is healthy
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      message:
                        type: string
                        example: /api/vector-db/health ok
  /api/vector-db:
    post:
      summary: Initialize the vector database
      tags:
      - VectorDB
      responses:
        '201':
          description: Vector database initialized successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/VectorDB'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
    patch:
      summary: Start or stop the vector database
      tags:
      - VectorDB
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VectorDBAction'
      responses:
        '200':
          description: Vector database state changed successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/VectorDB'
        '400':
          description: Invalid request or database not running
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
  /api/vector-db/tables:
    get:
      summary: Get all tables in the vector database
      tags:
      - VectorDB
      responses:
        '200':
          description: Tables retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TableInfo'
        '404':
          description: Server is not running
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
    post:
      summary: Create a new table in the vector database
      tags:
      - VectorDB
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateTableRequest'
      responses:
        '200':
          description: Table created successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/CreateTableResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '409':
          description: Table already exists
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
  /api/vector-db/tables/{tableName}:
    delete:
      summary: Delete a table from the vector database
      tags:
      - VectorDB
      parameters:
      - in: path
        name: tableName
        required: true
        schema:
          type: string
        description: Name of the table to delete
      responses:
        '200':
          description: Table deleted successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      message:
                        type: string
        '404':
          description: Table not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    CreateTableResponse:
      type: object
      required:
      - name
      - schema
      - numRows
      properties:
        name:
          type: string
          description: Name of the created table
        schema:
          type: object
          description: Schema of the created table
          properties:
            columns:
              type: array
              items:
                type: object
                properties:
                  name:
                    type: string
                    description: Column name
                  type:
                    type: string
                    description: Column data type
                  constraints:
                    type: array
                    items:
                      type: string
                    description: Column constraints
        numRows:
          type: integer
          description: Number of rows inserted
    VectorDB:
      type: object
      required:
      - running
      - host
      - port
      - database
      - user
      - password
      properties:
        running:
          type: boolean
          description: Whether the vector database is running
        host:
          type: string
          description: Database host address
        port:
          type: integer
          description: Database port number
        database:
          type: string
          description: Database name
        user:
          type: string
          description: Database username
        password:
          type: string
          description: Database password
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              enum:
              - INVALID_REQUEST
              - DATABASE_NOT_RUNNING
              - INTERNAL_SERVER_ERROR
              - INVALID_SERVER_ID
              - SERVER_NOT_RUNNING
              - SERVER_RUNNING
              - INTERNAL_SERVER_ERROR
            message:
              type: string
    VectorDBAction:
      type: object
      required:
      - running
      properties:
        running:
          type: boolean
          description: Whether to start (true) or stop (false) the vector database
    CreateTableRequest:
      type: object
      required:
      - name
      properties:
        name:
          type: string
          description: Name of the table to create
        schema:
          type: object
          description: Schema definition for the table
          properties:
            columns:
              type: array
              items:
                type: object
                properties:
                  name:
                    type: string
                    description: Column name
                  type:
                    type: string
                    description: Column data type
                  constraints:
                    type: array
                    items:
                      type: string
                    description: Column constraints
        data:
          type: array
          items:
            type: object
          description: Initial data to insert into the table
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: UUID
      description: Enter your API key here