curl --request GET \
--url https://api.zo.computer/api-keys/ \
--header 'Authorization: Bearer <token>'{
"keys": [
{
"id": "<string>",
"name": "<string>",
"key_prefix": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"last_used_at": "2023-11-07T05:31:56Z"
}
]
}List all API keys for the current host.
Returns key metadata only - the full key is never stored or returned after creation.
curl --request GET \
--url https://api.zo.computer/api-keys/ \
--header 'Authorization: Bearer <token>'{
"keys": [
{
"id": "<string>",
"name": "<string>",
"key_prefix": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"last_used_at": "2023-11-07T05:31:56Z"
}
]
}