Overview
The SteelSeries Apex Pro Mini Wireless is a high-performance 60% mechanical gaming keyboard designed for competitive players and users prioritizing desk space and wireless functionality. It integrates SteelSeries' proprietary OmniPoint 2.0 adjustable mechanical switches, which allow users to customize the actuation point of each key from 0.2mm for rapid response to 3.8mm for deliberate presses. This feature, termed '2-in-1 Action Keys', enables users to program two different actions to a single key based on the press depth, which can be advantageous in titles requiring complex inputs or rapid repeated actions SteelSeries Apex Pro Mini Wireless product page.
The keyboard utilizes Quantum 2.0 Dual Wireless technology, offering a 2.4GHz connection for low-latency gaming and a Bluetooth 5.0 option for broader device compatibility. This dual connectivity addresses the need for both performance and versatility in a wireless peripheral. Its 60% form factor removes the numeric keypad, function row, and navigation cluster, resulting in a compact design that frees up desk space for mouse movement, a common preference among esports professionals CS:GO pro player settings. The omission of these keys necessitates the use of a function layer for accessing secondary commands, managed through the SteelSeries Engine software. The Apex Pro Mini Wireless is targeted at users who require precise control and minimal input lag in a portable, space-saving package, without compromising on customizability or build quality, featuring double shot PBT keycaps for durability.
Key features
- OmniPoint 2.0 Adjustable Mechanical Switches: Allows per-key actuation point customization from 0.2mm to 3.8mm for tailored responsiveness.
- 2-in-1 Action Keys: Enables two distinct actions to be programmed to a single key based on press depth, enhancing in-game control.
- Quantum 2.0 Dual Wireless: Provides 2.4GHz wireless for gaming-grade latency and Bluetooth 5.0 for multi-device connectivity.
- 60% Form Factor: Compact design for increased desk space and improved ergonomics for mouse movement.
- Double Shot PBT Keycaps: Enhanced durability and resistance to wear and shine compared to ABS keycaps.
- Aircraft Grade Aluminum Alloy Frame: Offers structural rigidity and a premium feel.
- On-Board Memory: Stores up to five custom profiles directly on the keyboard for use across different systems without software.
- SteelSeries Engine Software: Provides comprehensive customization options for key remapping, actuation adjustment, RGB lighting, and macro creation.
Pricing
As of May 8, 2026, the SteelSeries Apex Pro Mini Wireless is available at the following manufacturer's suggested retail price:
| Product | MSRP (USD) | As-of Date | Source |
|---|---|---|---|
| SteelSeries Apex Pro Mini Wireless | $239.99 | 2026-05-08 | SteelSeries Apex Pro Mini Wireless Pricing |
Common integrations
The SteelSeries Apex Pro Mini Wireless primarily integrates with the SteelSeries Engine software for configuration and customization. This software suite allows users to manage various aspects of the keyboard's functionality:
- SteelSeries Engine: Required for full customization of OmniPoint actuation points, 2-in-1 Action Keys, RGB lighting effects, macro programming, and saving on-board profiles SteelSeries GG Engine Software.
- GameSense Integration: Through SteelSeries Engine, certain games can directly interact with the keyboard's RGB lighting to display in-game events, such as low health, cooldowns, or ultimate availability.
Alternatives
- Razer Huntsman Mini Analog: A 60% optical gaming keyboard with analog optical switches, offering adjustable actuation and analog input for fine motor control Razer Huntsman Mini Analog features.
- Corsair K70 RGB TKL Champion Series Wireless: A tenkeyless (TKL) wireless mechanical keyboard featuring Corsair's AXON Hyper-Processing Technology and Cherry MX switches, focusing on high polling rates and competitive performance Corsair K70 RGB TKL Wireless.
- Logitech G Pro X TKL LIGHTSPEED Wireless Gaming Keyboard: A TKL wireless keyboard designed for esports, featuring LIGHTSPEED wireless technology and interchangeable GX mechanical switches Logitech G Pro X TKL product page.
- Wooting 60HE: A 60% keyboard with Lekker switches offering analog input, rapid trigger, and adjustable actuation, known for its software features and competitive edge Wooting 60HE technical specifications.
Getting started
To begin using the SteelSeries Apex Pro Mini Wireless, follow these steps to ensure optimal performance and customization:
- Charge the Keyboard: Connect the keyboard to a USB-C port using the provided cable to ensure it has sufficient charge.
- Connect Wirelessly:
- 2.4GHz Wireless: Plug the included USB-C wireless dongle into an available USB-A port on your PC. The keyboard should automatically connect.
- Bluetooth: On the keyboard, switch to Bluetooth mode. On your device, search for and pair with "Apex Pro Mini Wireless" in your Bluetooth settings.
- Install SteelSeries Engine: Download and install the SteelSeries GG software suite, which includes the SteelSeries Engine, from the official SteelSeries website.
- Customize Settings: Open SteelSeries Engine. Here, you can:
- Adjust the actuation point for individual keys.
- Program 2-in-1 Action Keys.
- Create and assign macros.
- Customize RGB lighting effects.
- Save custom profiles to the keyboard's on-board memory.
- Firmware Updates: Periodically check SteelSeries Engine for available firmware updates to ensure the latest features and performance enhancements.
While the Apex Pro Mini Wireless does not have a traditional SDK for direct programming, its advanced features are exposed through the SteelSeries Engine. Below is an example of a simple configuration script concept, illustrating how one might conceptually set actuation points for specific keys within a hypothetical API structure, though actual direct scripting is handled internally by the SteelSeries Engine application:
// This is a conceptual representation.
// SteelSeries Engine handles these configurations via its GUI or internal API.
function configureGamingProfile() {
console.log("Loading 'FPS' gaming profile for Apex Pro Mini Wireless...");
// Set WASD for rapid movement (0.2mm actuation)
setKeyActuation('W', 0.2);
setKeyActuation('A', 0.2);
setKeyActuation('S', 0.2);
setKeyActuation('D', 0.2);
// Set 'G' for grenade with 2-in-1 action:
// Light press (0.6mm): equip grenade
// Deep press (3.0mm): throw grenade
set2in1Action('G', 0.6, 'Equip Grenade', 3.0, 'Throw Grenade');
// Set 'R' for reload (1.2mm actuation)
setKeyActuation('R', 1.2);
// Set 'F' for interact (1.8mm actuation)
setKeyActuation('F', 1.8);
console.log("FPS profile activated successfully.");
}
// Placeholder functions for demonstration purposes
function setKeyActuation(key, actuationPoint) {
console.log(`Key ${key}: Actuation set to ${actuationPoint}mm`);
}
function set2in1Action(key, lightPressActuation, lightPressAction, deepPressActuation, deepPressAction) {
console.log(`Key ${key}: 2-in-1 Action - Light press (${lightPressActuation}mm) for '${lightPressAction}', Deep press (${deepPressActuation}mm) for '${deepPressAction}'`);
}
configureGamingProfile();