TL;DR:

  • Snap Spectacles 5 are developer-focused AR glasses with a waveguide display, 45-minute battery, and a Snapdragon AR2 processor — the first Spectacles generation with a genuine optical AR overlay rather than a camera-only design
  • Development happens in Lens Studio using Snap’s TypeScript-based scripting and visual editing tools, with access to hand tracking, spatial audio, surface detection, and location anchoring
  • The platform is a subscription-based developer program ($99/month), positioning Spectacles as a developer and enterprise prototype tool rather than a consumer product — this is a conscious choice after the first four Spectacles generations

Four generations of Spectacles were essentially camera glasses — good for first-person photo and video, not augmented reality in any meaningful sense. The fifth generation, released in late 2025, is a different product. It has a waveguide display that puts digital content in your field of view, a full application processor, and a developer ecosystem that Snap is actively investing in. It’s still not a consumer device. But for AR developers looking for a platform to build on that isn’t Apple Vision Pro ($3,500) or a bulky enterprise headset, Spectacles 5 is worth understanding.

The Hardware

The Spectacles 5 hardware is designed around constraints that Apple and Meta have been less willing to accept: it’s lighter than Vision Pro by a large margin, looks closer to regular sunglasses, and has a battery life measured in tens of minutes rather than a couple of hours. The tradeoffs that make this possible are meaningful.

Display: Four waveguide lenses (two per eye) deliver a 46-degree field of view with up to 2000 nits brightness. The FOV is narrower than Vision Pro’s pancake lens display or Quest 3’s passthrough, but the waveguide approach is what makes the glasses form factor possible — waveguides are thin and transparent, unlike LCD or OLED panels. Outdoor visibility in bright conditions is acceptable, which is a real differentiator.

Processing: Snapdragon AR2 Gen 1 — Qualcomm’s platform built specifically for AR glasses rather than adapted from phone or PC chips. 12GB of RAM. Dedicated NPU for on-device AI inference (hand tracking, surface detection, face mesh). No active cooling fans, which matters for a glasses form factor.

Battery: 45 minutes in typical use. This is the most limiting spec on the hardware — it’s a constraint driven by physics (battery weight affects wearability) rather than engineering laziness. Snap provides a charging case that extends effective use time significantly, similar to the AirPods case model. For most developer and enterprise demonstration use cases, 45 minutes is sufficient; for production enterprise deployments, it’s a real constraint.

Sensors: Depth camera for surface detection and spatial mapping, two RGB cameras for hand tracking and passthrough, four microphones, speakers for spatial audio. GPS and Wi-Fi 6E connectivity.

How Development Works

The development environment is Lens Studio, Snap’s existing AR creation tool that’s been used for Snapchat lenses since 2017. For Spectacles development, Snap has extended Lens Studio with Spectacles-specific templates, APIs, and a simulation environment that lets you preview how a lens behaves on Spectacles hardware without wearing the device.

The scripting model uses TypeScript:

// Simple hand tracking example
import { HandTracking } from '@snap/lens-studio';

@component
export class HandAnchorExample extends BaseScriptComponent {
  private handTracking: HandTracking;
  
  onAwake() {
    this.handTracking = this.getSceneObject()
      .getComponent(HandTracking.getTypeName());
  }
  
  onUpdate() {
    if (this.handTracking.isTracking()) {
      const palmPosition = this.handTracking
        .getHand(HandType.Right)
        .getPalmPosition();
      
      // Anchor content to palm position
      this.getSceneObject().getTransform()
        .setWorldPosition(palmPosition);
    }
  }
}

Lens Studio’s visual scripting graph handles most common logic without code. But the TypeScript API gives you full control over the spatial computing primitives that matter: pose estimation, spatial anchors, surface mesh, scene understanding, and audio spatialization.

Key Development Capabilities

Hand tracking without controllers: Spectacles 5 has no controllers — all interaction is hand-based or voice-based. The hand tracking API exposes 21 joint positions per hand, pinch detection, gesture recognition, and ray casting from the index finger. This is the primary input model. For developers coming from controller-based VR, it requires rethinking interaction design, but the result feels natural for close-range interactions.

Surface detection and spatial anchors: The depth camera builds a mesh of the physical environment in real time. You can detect horizontal and vertical surfaces, spawn content on them, and persist spatial anchors tied to GPS coordinates or QR codes. This enables location-based AR experiences and content that stays attached to physical objects.

Location-based AR: Integration with Snap’s Scan API and location services allows experiences anchored to real-world locations — a digital overlay on a specific building, museum exhibit, or product. This is where Snap’s existing Snap Map and location infrastructure is an advantage over other AR platforms.

Multiuser: Multiple Spectacles devices can share a spatial session, seeing the same virtual objects in the same real-world positions. This uses Snap’s Spectacles sharing infrastructure — simpler to implement than custom multiplayer spatial solutions.

The Developer Program

The Spectacles Developer Program is subscription-based at $99/month, which includes hardware rental (you’re returned a working Spectacles unit) and access to the full SDK, developer support, and early feature access.

This model is unusual and worth understanding. Snap chose not to sell Spectacles 5 at consumer retail. The developer program is intentionally for builders, not early adopters. The subscription framing lets Snap upgrade the hardware over time (there’s a path to Spectacles 6 hardware for current subscribers) and keeps the installed base developer-focused.

For studios doing enterprise AR prototyping, the economics make sense: $99/month is less than a day of most enterprise developer time, and the ability to return hardware when a project wraps avoids inventory management. For independent developers, the ongoing cost is the consideration.

Comparing Platforms for AR Development

PlatformPriceFOVBatteryUse Case Fit
Snap Spectacles 5$99/month dev46°45 minConsumer-adjacent, location AR, light enterprise
Apple Vision Pro$3,499 own~100°2 hours (tethered)Premium enterprise, spatial computing
Meta Quest 3$499 own~100° (passthrough)2.2 hoursEnterprise VR/MR, gaming
HoloLens 2$3,500 own52°3 hoursIndustrial enterprise, field service
Magic Leap 2$3,299 own70°3.5 hoursEnterprise, medical, simulation

Spectacles sits in a space between consumer AR (Ray-Ban Meta, which has no display) and full enterprise AR (HoloLens, Magic Leap). The form factor is closer to consumer, the development program is focused on professional builders.

When It Makes Sense to Build for Spectacles

Consumer-facing AR experiences at scale: Snap’s distribution is a genuine advantage. Lenses built for Spectacles are accessible through the Snapchat app, meaning a Spectacles experience can reach Snap’s camera platform user base, not just Spectacles hardware owners. The distribution model is different from any other AR platform.

Location-based and outdoor AR: The waveguide display’s outdoor performance and GPS integration make Spectacles better than passthrough-based headsets for outdoor experiences — navigation overlays, outdoor venue experiences, field service applications in bright conditions.

Rapid enterprise AR prototyping: For agencies or studios building enterprise AR pilots (maintenance assistance, training, guided procedures), the developer program economics and hardware quality make Spectacles a practical prototyping platform before committing to a more expensive enterprise deployment.

Cross-platform Snap Lens development: If you’re already building Snap Lenses for Snapchat’s camera, Spectacles support is an extension of existing work rather than a platform switch.

The honest caveat: Spectacles 5 is still a first-generation serious AR platform. The 45-minute battery, the $99/month subscription rather than outright purchase, and the smaller developer community compared to Apple or Meta are real limitations. For developers evaluating where to invest AR expertise, it’s a complement to other platforms rather than a replacement.