Mixedbread Mixedbread Embeddings API API

The Mixedbread Embeddings API API from Mixedbread — 1 operation(s) for mixedbread embeddings api.

Operations 1

GET / Info #

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/mixedbread-ai-mixedbread-embeddings-api-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

mixedbread-ai-mixedbread-embeddings-api-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Mixedbread admin Mixedbread Embeddings API
  version: 0.1.0
  description: Mixedbread admin endpoints extracted from the canonical OpenAPI spec at https://api.mixedbread.com/openapi.json
servers:
- url: https://api.mixedbread.com
  description: mixedbread ai production server
- url: https://api.dev.mixedbread.com
  description: mixedbread ai development server
- url: http://127.0.0.1:8000
  description: mixedbread local server
- url: http://localhost:8000
  description: mixedbread local server
tags:
- name: Mixedbread Embeddings API
paths:
  /:
    get:
      summary: Info
      description: "Returns service information, including name and version.\n\nReturns:\n    InfoResponse: A response containing the service name and version."
      operationId: info
      responses:
        '200':
          description: Info response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InfoResponse'
        '500':
          description: Info failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
      - ApiKeyAuth: []
      tags:
      - Mixedbread Embeddings API
components:
  schemas:
    ErrorResponse:
      properties:
        error:
          $ref: '#/components/schemas/InnerErrorResponse'
      type: object
      required:
      - error
      title: ErrorResponse
      description: Error Pydantic Response Service Message
    InnerErrorResponse:
      properties:
        message:
          type: string
          title: Message
          description: The error message
        code:
          type: integer
          title: Code
          description: The error code
        type:
          type: string
          title: Type
          description: The error type
      type: object
      required:
      - message
      - code
      - type
      title: InnerErrorResponse
      description: Inner Error Pydantic Response Service Message
    InfoResponse:
      properties:
        name:
          type: string
          title: Name
        version:
          type: string
          title: Version
      type: object
      required:
      - name
      - version
      title: InfoResponse
      description: Info Pydantic Response Service Message
  securitySchemes:
    ApiKeyAuth:
      type: http
      description: Api key to access Mixedbreads API
      scheme: bearer