Get an API key
import requests
url = "https://{FUSION HOST}/api/api-key/{id}"
response = requests.get(url)
print(response.text){
"name": "lw-demo-se",
"id": "api-key-lw-demo-se-17586568872861",
"createdAt": "2025-09-23T19:48:07Z",
"roles": [
"admin"
]
}Get an API key
Fetch the API key with the specified ID. Note that the ID is different than the key name. Use GET /api-key to fetch the complete list of existing keys.
GET
/
api-key
/
{id}
Get an API key
import requests
url = "https://{FUSION HOST}/api/api-key/{id}"
response = requests.get(url)
print(response.text){
"name": "lw-demo-se",
"id": "api-key-lw-demo-se-17586568872861",
"createdAt": "2025-09-23T19:48:07Z",
"roles": [
"admin"
]
}Was this page helpful?
⌘I