Julep Embed API

The Embed API from Julep — 1 operation(s) for embed.

Operations 1

POST /embed #

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/julep-embed-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

julep-embed-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Julep Agents Embed API
  termsOfService: https://julep.ai/terms
  contact:
    name: Julep AI
    url: https://julep.ai
    email: developers@julep.ai
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
  description: Julep is a backend for creating stateful AI apps with background tasks and long-term memory easily.
  version: 1.0.0
servers:
- url: https://{serverEnv}.julep.ai/api
  description: The julep cloud service endpoint
  variables:
    serverEnv:
      default: api
      description: The environment to use
      enum:
      - api
      - dev
security:
- ApiKeyAuth: []
- ApiKeyAuth_: []
tags:
- name: Embed
paths:
  /embed:
    post:
      operationId: EmbedRoute_embed
      description: Embed a query for search
      parameters: []
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Docs.EmbedQueryResponse'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                body:
                  anyOf:
                  - $ref: '#/components/schemas/Docs.SingleEmbedQueryRequest'
                  - $ref: '#/components/schemas/Docs.MultipleEmbedQueryRequest'
              required:
              - body
      tags:
      - Embed
components:
  schemas:
    Docs.EmbedQueryResponse:
      type: object
      required:
      - vectors
      properties:
        vectors:
          type: array
          items:
            type: array
            items:
              type: number
          description: The embedded vectors
    Docs.MultipleEmbedQueryRequest:
      type: object
      required:
      - text
      - embed_instruction
      properties:
        text:
          type: array
          items:
            type: string
          minItems: 1
          maxItems: 100
          description: Texts to embed
        embed_instruction:
          type: string
          description: Instruction for the embedding model.
          default: ''
    Docs.SingleEmbedQueryRequest:
      type: object
      required:
      - text
      - embed_instruction
      properties:
        text:
          type: string
          description: Text to embed
        embed_instruction:
          type: string
          description: Instruction for the embedding model.
          default: ''
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
    ApiKeyAuth_:
      type: apiKey
      in: header
      name: X-Auth-Key
externalDocs:
  url: https://docs.julep.ai
  description: Julep API documentation