# Get API key details Retrieves detailed information about a specific API key. Endpoint: GET /api/admin/api-keys/{id} Version: EAP Security: APIKey, AdminToken ## Path parameters: - `id` (string, required) The unique identifier of the API key. ## Response 200 fields (application/json): - `id` (string, required) Example: "123e4567-e89b-12d3-a456-426614174000" - `created_at` (string, required) Example: "2023-10-01T12:00:00Z" - `expires_at` (string) - `masked_key_value` (string, required) Example: "key_123xxxx" - `scopes` (array, required) A list of scopes that the API key will have access to. Enum: "admin:api-keys:create", "admin:api-keys:read", "admin:api-keys:update", "admin:api-keys:delete", "pci:tokens:create", "pci:tokens:read", "pci:tokens:update", "pci:tokens:delete", "pci:tokens:forward", "network:tokens:create", "network:tokens:read", "network:tokens:delete", "network:tokens:use", "metadata:inquiry:create" ## Response 401 fields (application/json): - `code` (integer) The corresponding HTTP status code for the error - `classifier` (string) Technical code that helps to identify the error - `message` (string) Human readable representation of the error ## Response 403 fields (application/json): - `code` (integer) The corresponding HTTP status code for the error - `classifier` (string) Technical code that helps to identify the error - `message` (string) Human readable representation of the error ## Response 404 fields (application/json): - `code` (integer) The corresponding HTTP status code for the error - `classifier` (string) Technical code that helps to identify the error - `message` (string) Human readable representation of the error