Versions
Get versions
Get a list of available API versions
Code samples
GET
/v1/versions If your instance is in the eu-de region, use this URL instead: https://eu-de.quantum.cloud.ibm.com/api/v1/versions
curl -X GET \
https://quantum.cloud.ibm.com/api/v1/versions \
-H 'Accept: application/json' If your instance is in the eu-de region, use this URL instead: https://eu-de.quantum.cloud.ibm.com/api/v1/versions
import requests
response = requests.request(
"GET",
"https://quantum.cloud.ibm.com/api/v1/versions",
headers={
"Accept": "application/json"
},
)
print(response.json())Responses
{
"versions": [
"2024-01-01",
"2025-01-01",
"2025-05-01"
]
}{
"type": "object",
"properties": {
"versions": {
"example": [
"2024-01-01",
"2025-01-01",
"2025-05-01"
],
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"versions"
]
}Was this page helpful?
Report a bug, typo, or request content on GitHub.