Dedalus Labs Dedalus API API

The Dedalus API API from Dedalus Labs — 1 operation(s) for dedalus api.

OpenAPI Specification

dedaluslabs-dedalus-api-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Dedalus Audio Dedalus API API
  description: 'MCP gateway for AI agents. Mix-and-match any model with any tool from our marketplace.


    ## Authentication

    Use Bearer token or X-API-Key header authentication:

    ```

    Authorization: Bearer your-api-key-here

    ```

    ```

    x-api-key: your-api-key-here

    ```


    ## Available Endpoints

    - **GET /v1/models**: list available models

    - **POST /v1/chat/completions**: Chat completions with MCP tools

    - **GET /health**: Service health check'
  version: 0.0.1
servers:
- url: https://api.dedaluslabs.ai
  description: Official Dedalus API
tags:
- name: Dedalus API
paths:
  /:
    get:
      summary: Root
      operationId: root__get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RootResponse'
      x-codeSamples:
      - lang: go
        label: Go
        source: 'client := dedalus.NewClient()


          result, err := client.Root.Get(ctx context.Context)'
      tags:
      - Dedalus API
components:
  schemas:
    RootResponse:
      properties:
        message:
          type: string
          title: Message
      type: object
      required:
      - message
      title: RootResponse
      description: Response model for the root endpoint of the Dedalus API.
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer