Skip to main contentIBM Quantum Documentation

Refunds


List all active refunds

List refunds

Query Parameters

Name, TypeDescription
instance
Required
string

Instance to get refunds for

HTTP Response Status Codes

Status codeDescription
200
401Unauthorized
403Forbidden
500Internal server error

Code samples

GET
/refunds
curl -X GET \
  https://api.quantum-computing.ibm.com/runtime/refunds \
  -H 'Authorization: Bearer YOUR-TOKEN' \
  -H 'Accept: application/json'

Responses

{
  "refunds": [
    {
      "id": 123,
      "createdAt": "2024-01-01T00:00:00Z",
      "refundTime": 450,
      "incidentOccurredAt": "2024-01-01T00:00:00Z",
      "expiresAt": "2024-01-01T00:00:00Z",
      "reason": "There was a hardware problem and some jobs failed",
      "instance": "hub/group/project"
    }
  ]
}
Was this page helpful?
Report a bug or request content on GitHub.