# Device The `device` object provides information about the user's device, such as browser, platform, and device type. ## Usage Example ```liquid {%- comment -%} Show device information {%- endcomment -%}
Device: {{ device.device }}
Platform: {{ device.platform }}
Browser: {{ device.browser }}
{% if device.is_robot %}This is a robot device.{% endif %}