D-Wave Hybrid API

The Hybrid API from D-Wave — 1 operation(s) for hybrid.

Operations 1

POST /problems/ Submit Hybrid Problem #

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/d-wave-hybrid-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

d-wave-hybrid-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: D-Wave Leap Solvers Hybrid API
  version: '3.0'
  description: 'Leap Hybrid Solvers — quantum-classical hybrid samplers (BQM, CQM, DQM, NL) submitted

    via the standard SAPI Problems endpoint with `type=bqm|cqm|dqm|nl` and the matching

    hybrid solver name. This spec narrows the generic SAPI submit surface to the hybrid

    solver request/response shapes.

    '
  contact:
    name: D-Wave Quantum Inc.
    url: https://docs.dwavequantum.com/en/industrial_optimization/index_get_started.html
servers:
- url: https://cloud.dwavesys.com/sapi/v2
security:
- SapiToken: []
tags:
- name: Hybrid
paths:
  /problems/:
    post:
      operationId: submitHybridProblem
      summary: Submit Hybrid Problem
      description: 'Submit a Constrained Quadratic Model (CQM), Binary Quadratic Model (BQM), Discrete

        Quadratic Model (DQM), or Nonlinear (NL) problem to a Leap hybrid solver. Supports

        industry-scale problems up to ~2 million variables/constraints. Solver name must

        match an active hybrid solver discoverable via `/solvers/remote/`.

        '
      tags:
      - Hybrid
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/HybridProblemJob'
      responses:
        '200':
          description: Hybrid problem status
          content:
            application/vnd.dwave.sapi.problems+json;version=3.0.0:
              schema:
                $ref: '#/components/schemas/HybridProblemStatus'
components:
  schemas:
    HybridProblemStatus:
      type: object
      properties:
        id:
          type: string
        type:
          type: string
        solver:
          type: string
        status:
          type: string
          enum:
          - PENDING
          - IN_PROGRESS
          - COMPLETED
          - FAILED
          - CANCELLED
        submitted_on:
          type: string
          format: date-time
        solved_on:
          type: string
          format: date-time
        answer:
          type: object
          properties:
            format:
              type: string
              enum:
              - bq
              - binary-ref
            data:
              type: string
              description: Serialized dimod SampleSet (bq) or binary-ref pointer.
            url:
              type: string
              format: uri
              description: Present when format=binary-ref.
            auth_method:
              type: string
              enum:
              - sapi-token
    HybridProblemJob:
      type: object
      required:
      - solver
      - type
      - data
      properties:
        solver:
          type: string
          enum:
          - hybrid_nonlinear_program_v1
          - hybrid_constrained_quadratic_model_version1p
          - hybrid_binary_quadratic_model_version2p
          - hybrid_discrete_quadratic_model_version1p
        type:
          type: string
          enum:
          - bqm
          - cqm
          - dqm
          - nl
        data:
          type: object
          properties:
            format:
              type: string
              enum:
              - bq
              - ref
            data:
              type: string
              description: Base64-encoded serialized dimod model.
        params:
          type: object
          properties:
            time_limit:
              type: number
              description: Solver wall-clock time limit in seconds.
            label:
              type: string
        label:
          type: string
  securitySchemes:
    SapiToken:
      type: apiKey
      in: header
      name: X-Auth-Token