D-Wave Account API

The Account API from D-Wave — 3 operation(s) for account.

Operations 3

GET /account/active_project/oauth/ Get Active Project #
GET /account/projects/oauth/ List Projects #
GET /account/token/oauth/ Get Project SAPI Token #

Documentation

Specifications

Schemas & Data

Other Resources

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-account-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-account-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: D-Wave Leap Account API
  version: '1.0'
  description: 'D-Wave Leap Account API — OAuth-backed endpoints for retrieving the active Leap

    project, listing accessible projects, and provisioning project-scoped SAPI tokens

    for use against the Solver API.

    '
  contact:
    name: D-Wave Quantum Inc.
servers:
- url: https://cloud.dwavesys.com/leap/api
security:
- LeapOAuth: []
tags:
- name: Account
paths:
  /account/active_project/oauth/:
    get:
      operationId: getActiveProject
      summary: Get Active Project
      description: Retrieve the authenticated user's active Leap project as selected in the Leap dashboard.
      tags:
      - Account
      responses:
        '200':
          description: Active project
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LeapProject'
  /account/projects/oauth/:
    get:
      operationId: listProjects
      summary: List Projects
      description: Retrieve the list of Leap projects accessible to the authenticated user.
      tags:
      - Account
      responses:
        '200':
          description: Project list
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/LeapProject'
  /account/token/oauth/:
    get:
      operationId: getProjectToken
      summary: Get Project SAPI Token
      description: Retrieve a SAPI token for a given Leap project.
      tags:
      - Account
      parameters:
      - in: query
        name: project_id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: SAPI token
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LeapProjectToken'
components:
  schemas:
    LeapProject:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        code:
          type: string
        description:
          type: string
        organization:
          type: string
    LeapProjectToken:
      type: object
      properties:
        token:
          type: string
          description: Opaque SAPI token to send as `X-Auth-Token` against the Solver API.
        project_id:
          type: string
  securitySchemes:
    LeapOAuth:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://cloud.dwavesys.com/leap/oauth/authorize
          tokenUrl: https://cloud.dwavesys.com/leap/oauth/token
          scopes:
            account: Read account, projects, and tokens