Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Create and manage your API keys.
curl https://api.hyzecloud.com/api/api-keys/ \ -H "Authorization: Bearer hyze_your_key"
{ "success": true, "keys": [ { "id": "key_abc123", "name": "Production", "prefix": "hyze_", "enabled": true, "remaining": null, "createdAt": "2026-06-24T23:00:00Z", "updatedAt": "2026-06-24T23:00:00Z" } ] }
name
string
expiresIn
number | null
null
prefix
remaining
number
metadata
object
curl -X POST https://api.hyzecloud.com/api/api-keys/ \ -H "Authorization: Bearer hyze_your_key" \ -H "Content-Type: application/json" \ -d '{ "name": "CI/CD" }'
{ "success": true, "key": "hyze_new_key_value_here", "id": "key_xyz789" }
enabled
boolean
curl -X PUT https://api.hyzecloud.com/api/api-keys/key_abc123 \ -H "Authorization: Bearer hyze_your_key" \ -H "Content-Type: application/json" \ -d '{ "enabled": false }'
curl -X DELETE https://api.hyzecloud.com/api/api-keys/key_abc123 \ -H "Authorization: Bearer hyze_your_key"