List API keys
import requests
url = "https://{FUSION HOST}/api/api-key"
response = requests.get(url)
print(response.text)[
{
"name": "demo",
"id": "api-key-demo-17596568472860",
"createdAt": "2025-09-23T17:48:07Z",
"roles": [
"search"
]
},
{
"name": "core_ui",
"id": "api-key-core-ui-10507742792493",
"createdAt": "2025-06-24T13:44:39Z",
"roles": [
"admin"
]
}
]List API keys
Fetch the list of all API keys in Fusion.
GET
/
api-key
List API keys
import requests
url = "https://{FUSION HOST}/api/api-key"
response = requests.get(url)
print(response.text)[
{
"name": "demo",
"id": "api-key-demo-17596568472860",
"createdAt": "2025-09-23T17:48:07Z",
"roles": [
"search"
]
},
{
"name": "core_ui",
"id": "api-key-core-ui-10507742792493",
"createdAt": "2025-06-24T13:44:39Z",
"roles": [
"admin"
]
}
]Was this page helpful?
⌘I