Skip to main contentIBM Quantum Documentation

General methods

Service level methods


Health check

Check that the Qiskit Transpiler Service API is operating correctly.

HTTP Response Status Codes

Status codeDescription
200Successful Response

Code samples

GET
/health
curl -X GET \
  https://cloud-transpiler.quantum.ibm.com/health \
  -H 'Authorization: Bearer YOUR-TOKEN' \
  -H 'Accept: application/json'

Responses

{
  "message": "example"
}

Get versions

Get the versions of the Qiskit Transpiler Service API and Qiskit SDK

HTTP Response Status Codes

Status codeDescription
200Successful Response

Code samples

GET
/version
curl -X GET \
  https://cloud-transpiler.quantum.ibm.com/version \
  -H 'Authorization: Bearer YOUR-TOKEN' \
  -H 'Accept: application/json'

Responses

{
  "api": "example",
  "qiskit": "example"
}
Was this page helpful?
Report a bug or request content on GitHub.