IonQ whoami API

The whoami API from IonQ — 1 operation(s) for whoami.

Operations 1

GET /whoami Get current key #

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/ionq-whoami-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

ionq-whoami-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  contact:
    email: support@ionq.co
    name: IonQ
    url: https://ionq.com/
  description: '*Last updated: May 15, 2026*

    IonQ''s API for accessing the IonQ Quantum Cloud platform


    Please subscribe for automated updates when we perform maintenance or

    experience an outage.


    In addition, you may use the [status endpoint](#tag/status) to check the

    current status of our API.


    ## Authentication


    <SecurityDefinitions />

    '
  title: IonQ Cloud Platform backends Whoami API
  version: v0.4
servers:
- url: https://api.ionq.co/v0.4
tags:
- name: whoami
paths:
  /whoami:
    get:
      description: Retrieves current key associated with this session.
      operationId: getWhoami
      responses:
        '200':
          $ref: '#/components/responses/Whoami'
      summary: Get current key
      tags:
      - whoami
      x-codeSamples:
      - lang: curl
        source: "curl \"https://api.ionq.co/v0.4/whoami\" \\\n  -H \"Authorization: apiKey your-api-key\"\n"
components:
  schemas:
    key-name:
      description: key name.
      example: My First Key
      type: string
    Whoami:
      description: Details of current API Key session.
      properties:
        key_id:
          $ref: '#/components/schemas/key-id'
        key_name:
          $ref: '#/components/schemas/key-name'
        project_id:
          $ref: '#/components/schemas/project-id'
      required:
      - key_id
      - key_name
      type: object
    project-id:
      description: UUID of a project.
      example: 944904d6-2e30-4cfb-8bc4-04afaabcdd42
      format: uuid
      type: string
    key-id:
      description: UUID of a API key.
      example: e060759f-4348-4767-a645-8c0301265791
      format: uuid
      type: string
  responses:
    Whoami:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Whoami'
      description: Successfully retrieved a current of key from this session.
  securitySchemes:
    apiKeyAuth:
      description: 'API keys are associated with a user and can be created on the [IonQ Quantum Cloud](https://cloud.ionq.com) application. To authenticate, prefix your API Key with `apiKey ` and place it in the `Authorization` request header. Ex: `Authorization: apiKey your-api-key`'
      in: header
      name: Authorization
      type: apiKey