Adaptive ML Embeddings API

The Embeddings API from Adaptive ML — 1 operation(s) for embeddings.

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/adaptive-ml-embeddings-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 email required.

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

OpenAPI Specification

adaptive-ml-embeddings-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: concorde artifacts::rest Embeddings API
  description: ''
  license:
    name: UNLICENSED
    identifier: UNLICENSED
  version: 0.1.0
tags:
- name: Embeddings
paths:
  /api/v1/embeddings:
    post:
      tags:
      - Embeddings
      operationId: Embeddings
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GenerateEmbeddingsInput'
        required: true
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmbeddingsResponseList'
components:
  schemas:
    EmbeddingsEncodingFormat:
      type: string
      enum:
      - Float
      - Base64
    Usage:
      type: object
      required:
      - completion_tokens
      - prompt_tokens
      - total_tokens
      properties:
        completion_tokens:
          type: integer
          format: int32
          minimum: 0
        prompt_tokens:
          type: integer
          format: int32
          minimum: 0
        total_tokens:
          type: integer
          format: int32
          minimum: 0
    GenerateEmbeddingsInput:
      type: object
      required:
      - input
      - model
      properties:
        input:
          type: string
        model:
          type: string
          description: can be of the form '{project}/{model}' or '{project}'. In the latter it will use
            the default model
        encoding_format:
          oneOf:
          - type: 'null'
          - $ref: '#/components/schemas/EmbeddingsEncodingFormat'
            description: default to float
        dimensions:
          type:
          - integer
          - 'null'
          format: int32
          minimum: 0
        user:
          type:
          - string
          - 'null'
          format: uuid
        session_id:
          type:
          - string
          - 'null'
          format: uuid
    EmbeddingResponse:
      type: object
      required:
      - index
      - embedding
      properties:
        index:
          type: integer
          format: int32
          minimum: 0
        embedding:
          $ref: '#/components/schemas/EmbeddingsData'
    EmbeddingsData:
      oneOf:
      - type: array
        items:
          type: number
          format: float
      - type: string
    EmbeddingsResponseList:
      type: object
      required:
      - data
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/EmbeddingResponse'
        usage:
          oneOf:
          - type: 'null'
          - $ref: '#/components/schemas/Usage'
servers:
- url: https://your-adaptive-deployment/api/v1
  description: Base URL reconciled from apis.yml