Tags
List tags
Search and list the tags of jobs.
Code samples
GET
/tagscurl -X GET \
https://api.quantum-computing.ibm.com/runtime/tags \
-H 'Authorization: Bearer YOUR-TOKEN' \
-H 'Accept: application/json'
import requests
response = requests.request(
"GET",
"https://api.quantum-computing.ibm.com/runtime/tags",
headers={
"Accept": "application/json",
"Authorization": "Bearer YOUR_API_TOKEN_HERE"
},
)
print(response.json())
Responses
{
"tags": [
"tag1",
"tag2",
"tag3",
"tag4"
]
}
{
"type": "object",
"properties": {
"tags": {
"title": "Tags",
"description": "List of job or program tags",
"type": "array",
"minItems": 1,
"maxItems": 5,
"items": {
"type": "string",
"pattern": ".*",
"minLength": 1,
"maxLength": 24
}
}
}
}
Was this page helpful?
Report a bug or request content on GitHub.