Skip to main content
GET
/
api-key
/
{id}
Get an API key
import requests

url = "https://{FUSION HOST}/api/api-key/{id}"

response = requests.get(url)

print(response.json())
{
  "name": "lw-demo-se",
  "id": "api-key-lw-demo-se-17586568872861",
  "createdAt": "2025-09-23T19:48:07Z",
  "roles": [
    "admin"
  ]
}

Path Parameters

id
string
required

The API key ID.

Response

Success.

name
string
id
string
createdAt
string<date-time>
Example:

"2025-09-23T17:48:07Z"

key
string
roles
string[]

One or more user roles. Use GET /roles to get the list of existing roles.

disabled
boolean