Skip to main content
GET
/
api-key
List API keys
import requests

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

response = requests.get(url)

print(response.json())
[
  {
    "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"
    ]
  }
]

Response

200 - */*

OK

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