curl --request GET \
--url https://api.ai2fin.com/api/admin/api-keys \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": [
{
"id": "<string>",
"name": "<string>",
"scopes": "<array>",
"expiresAt": "<string>",
"createdAt": "<string>",
"lastUsedAt": "<string>"
}
]
}List all API keys for the authenticated user (admin access required)
curl --request GET \
--url https://api.ai2fin.com/api/admin/api-keys \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": [
{
"id": "<string>",
"name": "<string>",
"scopes": "<array>",
"expiresAt": "<string>",
"createdAt": "<string>",
"lastUsedAt": "<string>"
}
]
}