Quandela Quantum Toolbox API

Quandela's pre-built quantum primitives, published as a separate specification at https://api.cloud.quandela.com/qt-openapi.json. Five fully typed algorithms — Chemistry VQE, Custom VQE, CVaR VQE, Graph DSI and Graph Isomorphism — each with dedicated params, status, intermediate result and result schemas, and each paired with an /estimate operation that returns nb_iterations / nb_shots_per_job / nb_total_shots without running the workload or spending credits. Also carries the Entropy QRNG, the only synchronous operations on the platform, whose draws return CHSH and min-entropy certification alongside the values. Unlike Perceval job submission, this surface is callable directly over HTTP with no SDK.

OpenAPI Specification

quandela-quantum-toolbox-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: Quandela Cloud API — QuantumToolbox
  version: v2.8.0-rc4
  description: "\nThis is the official API documentation.\n\n## Overview\n\nThis API provides access to various features and services.  \n\n## Authentication\n\nAll endpoints require an access token generated\
    \ by the authorization server.\n\nInclude the token in the request headers:\n\n```http\nAuthorization: Bearer YOUR_ACCESS_TOKEN\n```\nEnsure the token is valid and not expired.\n\n"
  contact:
    name: Support
    url: https://www.quandela.com/about-us/contact-us/
  termsOfService: https://www.quandela.com/legal-terms/
servers:
- url: https://api.cloud.quandela.com/
tags:
- name: QuantumToolbox
  description: Quantum Toolbox entrypoints
paths:
  /qt/chemistryvqe:
    post:
      description: Chemistry VQE input API
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ChemistryVqeParams'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QTJobId'
          description: Successful response
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Authentication error
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationError'
          description: Validation error
      security:
      - BearerAuth: []
      summary: Chemistry VQE
      tags:
      - QuantumToolbox
      operationId: post_qt_chemistryvqe
  /qt/chemistryvqe/estimate:
    post:
      description: Chemistry VQE input API
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ChemistryVqeParams'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QTJobId'
          description: Successful response
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Authentication error
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationError'
          description: Validation error
      security:
      - BearerAuth: []
      summary: Chemistry VQE Estimator
      tags:
      - QuantumToolbox
      operationId: post_qt_chemistryvqe_estimate
  /qt/chemistryvqe/{job_id}/results:
    get:
      parameters:
      - in: path
        name: job_id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ChemistryVQEJobResult'
          description: Success
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Invalid job_id
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Authentication error
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Permission denied
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Not found
      security:
      - BearerAuth: []
      summary: Chemistry VQE Results
      tags:
      - QuantumToolbox
      operationId: get_qt_chemistryvqe_by_job_id_results
  /qt/chemistryvqe/{job_id}/status:
    get:
      parameters:
      - in: path
        name: job_id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ChemistryVQEJobStatus'
          description: Success
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Invalid job_id
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Authentication error
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Permission denied
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Not found
      security:
      - BearerAuth: []
      summary: Chemistry VQE Status
      tags:
      - QuantumToolbox
      operationId: get_qt_chemistryvqe_by_job_id_status
  /qt/customvqe:
    post:
      description: Custom VQE input API
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CustomVqeParams'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QTJobId'
          description: Successful response
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Authentication error
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationError'
          description: Validation error
      security:
      - BearerAuth: []
      summary: Custom VQE
      tags:
      - QuantumToolbox
      operationId: post_qt_customvqe
  /qt/customvqe/estimate:
    post:
      description: Custom VQE input API
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CustomVqeParams'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QTJobId'
          description: Successful response
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Authentication error
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationError'
          description: Validation error
      security:
      - BearerAuth: []
      summary: Custom VQE Estimator
      tags:
      - QuantumToolbox
      operationId: post_qt_customvqe_estimate
  /qt/customvqe/{job_id}/results:
    get:
      parameters:
      - in: path
        name: job_id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustomVQEJobResult'
          description: Success
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Invalid job_id
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Authentication error
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Permission denied
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Not found
      security:
      - BearerAuth: []
      summary: Custom VQE Results
      tags:
      - QuantumToolbox
      operationId: get_qt_customvqe_by_job_id_results
  /qt/customvqe/{job_id}/status:
    get:
      parameters:
      - in: path
        name: job_id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustomVQEJobStatus'
          description: Success
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Invalid job_id
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Authentication error
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Permission denied
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Not found
      security:
      - BearerAuth: []
      summary: Custom VQE Status
      tags:
      - QuantumToolbox
      operationId: get_qt_customvqe_by_job_id_status
  /qt/cvarvqe:
    post:
      description: CVar VQE input API
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CVarVqeParams'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QTJobId'
          description: Successful response
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Authentication error
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationError'
          description: Validation error
      security:
      - BearerAuth: []
      summary: CVar VQE
      tags:
      - QuantumToolbox
      operationId: post_qt_cvarvqe
  /qt/cvarvqe/estimate:
    post:
      description: CVar VQE input API
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CVarVqeParams'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QTJobId'
          description: Successful response
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Authentication error
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationError'
          description: Validation error
      security:
      - BearerAuth: []
      summary: CVar VQE Estimator
      tags:
      - QuantumToolbox
      operationId: post_qt_cvarvqe_estimate
  /qt/cvarvqe/{job_id}/results:
    get:
      parameters:
      - in: path
        name: job_id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CVarVQEJobResult'
          description: Success
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Invalid job_id
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Authentication error
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Permission denied
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Not found
      security:
      - BearerAuth: []
      summary: CVar VQE Results
      tags:
      - QuantumToolbox
      operationId: get_qt_cvarvqe_by_job_id_results
  /qt/cvarvqe/{job_id}/status:
    get:
      parameters:
      - in: path
        name: job_id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CVarVQEJobStatus'
          description: Success
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Invalid job_id
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Authentication error
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Permission denied
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Not found
      security:
      - BearerAuth: []
      summary: CVar VQE Status
      tags:
      - QuantumToolbox
      operationId: get_qt_cvarvqe_by_job_id_status
  /qt/graphDSI:
    post:
      description: Graph algorithm for DSI
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GraphDSIParams'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QTJobId'
          description: Successful response
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Authentication error
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationError'
          description: Validation error
      security:
      - BearerAuth: []
      summary: Graph DSI
      tags:
      - QuantumToolbox
      operationId: post_qt_graphDSI
  /qt/graphDSI/estimate:
    post:
      description: Graph algorithm for DSI
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GraphDSIParams'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QTJobId'
          description: Successful response
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Authentication error
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationError'
          description: Validation error
      security:
      - BearerAuth: []
      summary: Graph DSI Estimator
      tags:
      - QuantumToolbox
      operationId: post_qt_graphDSI_estimate
  /qt/graphDSI/{job_id}/results:
    get:
      parameters:
      - in: path
        name: job_id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GraphDSIJobResult'
          description: Success
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Invalid job_id
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Authentication error
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Permission denied
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Not found
      security:
      - BearerAuth: []
      summary: Graph DSI Results
      tags:
      - QuantumToolbox
      operationId: get_qt_graphDSI_by_job_id_results
  /qt/graphDSI/{job_id}/status:
    get:
      parameters:
      - in: path
        name: job_id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GraphDSIJobStatus'
          description: Success
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Invalid job_id
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Authentication error
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Permission denied
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Not found
      security:
      - BearerAuth: []
      summary: Graph DSI Status
      tags:
      - QuantumToolbox
      operationId: get_qt_graphDSI_by_job_id_status
  /qt/graphIsomorphism:
    post:
      description: Graph algorithm for graph isomorphism
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GraphIsomorphismParams'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QTJobId'
          description: Successful response
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Authentication error
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationError'
          description: Validation error
      security:
      - BearerAuth: []
      summary: Graph Isomorphism
      tags:
      - QuantumToolbox
      operationId: post_qt_graphIsomorphism
  /qt/graphIsomorphism/estimate:
    post:
      description: Graph algorithm for graph isomorphism
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GraphIsomorphismParams'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QTJobId'
          description: Successful response
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Authentication error
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationError'
          description: Validation error
      security:
      - BearerAuth: []
      summary: Graph Isomorphism Estimator
      tags:
      - QuantumToolbox
      operationId: post_qt_graphIsomorphism_estimate
  /qt/graphIsomorphism/{job_id}/results:
    get:
      parameters:
      - in: path
        name: job_id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GraphIsomorphismJobResult'
          description: Success
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Invalid job_id
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Authentication error
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Permission denied
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Not found
      security:
      - BearerAuth: []
      summary: Graph Isomorphism Results
      tags:
      - QuantumToolbox
      operationId: get_qt_graphIsomorphism_by_job_id_results
  /qt/graphIsomorphism/{job_id}/status:
    get:
      parameters:
      - in: path
        name: job_id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GraphIsomorphismJobStatus'
          description: Success
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Invalid job_id
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Authentication error
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Permission denied
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPError'
          description: Not found
      security:
      - BearerAuth: []
      summary: Graph Isomorphism Status
      tags:
      - QuantumToolbox
      operationId: get_qt_graphIsomorphism_by_job_id_status
components:
  schemas:
    Atom:
      additionalProperties: false
      properties:
        coordinates:
          items:
            type: number
          maxItems: 3
          minItems: 3
          type: array
        element:
          type: string
      required:
      - coordinates
      - element
      type: object
    CVarVQEJobResult:
      additionalProperties: false
      properties:
        duration:
          description: Duration in seconds
          example: 42
          type: integer
        intermediate_results:
          description: Results with timestamps
          items:
            $ref: '#/components/schemas/IntermediateCVarVqeResults'
          type: array
        job_id:
          type: string
        progress:
          example: 0.7
          type: number
        progress_message:
          description: detailed message
          type: string
        results:
          $ref: '#/components/schemas/CVarVqeResults'
        status:
          description: Status code
          enum:
          - waiting
          - running
          - canceled
          - completed
          - error
          example: running
          type: string
        status_message:
          description: detailed message
          type: string
      required:
      - duration
      - job_id
      type: object
    CVarVQEJobStatus:
      additionalProperties: false
      properties:
        duration:
          description: Duration in seconds
          example: 42
          type: integer
        last_intermediate_results:
          $ref: '#/components/schemas/IntermediateCVarVqeResults'
        progress:
          example: 0.7
          type: number
        progress_message:
          description: detailed message
          type: string
        status:
          description: Status code
          enum:
          - waiting
          - running
          - canceled
          - completed
          - error
          example: running
          type: string
        status_message:
          description: detailed message
          type: string
      required:
      - duration
      type: object
    CVarVqeParams:
      additionalProperties: false
      properties:
        max_iterations:
          default: 200
          minimum: 1
          nullable: true
          type: integer
        platform_name:
          example: sim:gpu:medium
          type: string
        qubo_matrix:
          example:
          - - 25
            - -12
            - 0
            - -5
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - -8
          - - -12
            - 30
            - -15
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
          - - 0
            - -15
            - 28
            - -10
            - 0
            - 0
            - 0
            - -7
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
          - - -5
            - 0
            - -10
            - 35
            - -20
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
          - - 0
            - 0
            - 0
            - -20
            - 40
            - -18
            - 0
            - 0
            - 0
            - 0
            - -9
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
          - - 0
            - 0
            - 0
            - 0
            - -18
            - 32
            - -14
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
          - - 0
            - 0
            - 0
            - 0
            - 0
            - -14
            - 27
            - -16
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
          - - 0
            - 0
            - -7
            - 0
            - 0
            - 0
            - -16
            - 33
            - -11
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
          - - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - -11
            - 29
            - -13
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
          - - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - -13
            - 31
            - -17
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
          - - 0
            - 0
            - 0
            - 0
            - -9
            - 0
            - 0
            - 0
            - 0
            - -17
            - 36
            - -19
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
          - - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - -19
            - 34
            - -15
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
          - - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - -15
            - 28
            - -12
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
          - - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - -12
            - 30
            - -14
            - 0
            - 0
            - 0
            - 0
            - 0
          - - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - -14
            - 32
            - -16
            - 0
            - 0
            - 0
            - 0
          - - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - -16
            - 29
            - -13
            - 0
            - 0
            - 0
          - - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - -13
            - 27
            - -11
            - 0
            - 0
          - - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - -11
            - 31
            - -15
            - 0
          - - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - -15
            - 33
            - -18
          - - -8
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - 0
            - -18
            - 35
          items:
            items:
              type: number
            type: array
          maxItems: 70
          type: array
      required:
      - platform_name
      - qubo_matrix
      type: object
    CVarVqeResults:
      additionalProperties: false
      properties:
        bitstring:
          type: string
        estimation:
          $ref: '#/components/schemas/EstimationResult'
        loss:
          type: number
      required:
      - bitstring
      - loss
      type: object
    ChemistryVQEJobResult:
      additionalProperties: false
      properties:
        duration:
          description: Duration in seconds
          example: 42
          type: integer
        intermediate_results:
          description: Results with timestamps
          items:
            $ref: '#/components/schemas/IntermediateChemistryVqeResults'
          type: array
        job_id:
          type: string
        progress:
          example: 0.7
          type: number
        progress_message:
 

# --- truncated at 32 KB (46 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/quandela/refs/heads/main/openapi/quandela-quantum-toolbox-openapi.yml