TL;DR:
- Amazon Sidewalk is a shared wireless network that lets IoT devices reach the internet using nearby Amazon Echo and Ring devices as bridges — extending coverage without requiring your own gateway infrastructure.
- It operates on sub-GHz radio (900 MHz) and Bluetooth LE, providing low-bandwidth, low-power connectivity over hundreds of metres to a couple of kilometres.
- Sidewalk is free to use for device connectivity and has an open SDK. The catch: it depends on Amazon’s infrastructure, it has significant bandwidth limits (500 bytes per message, 160 KB/day per device), and privacy implications deserve scrutiny before deployment.
Most IoT connectivity options require you to own your infrastructure. You run the gateway, you manage the network, you pay for cellular or Wi-Fi coverage. Amazon Sidewalk takes a different approach: your neighbours’ Amazon devices are the infrastructure, and Amazon manages the network.
It’s an unusual model, and it comes with genuine tradeoffs. But for certain classes of IoT application — asset tracking, remote sensors, lost item finders, lightweight environmental monitoring — it offers something genuinely useful: free coverage in populated areas, with zero gateway infrastructure required.
How Sidewalk Works
Sidewalk bridges are Amazon devices that participate in the network: Echo smart speakers, Ring doorbells and cameras, Ring Floodlight Cams, and some Tile trackers. Participating devices dedicate a small portion of their bandwidth (capped at 80 Kbps upload and 500 MB/month per device) to routing Sidewalk traffic. This is opt-out, not opt-in — Amazon enables Sidewalk on eligible devices by default, which generated controversy when it launched in 2021 but is now largely accepted by the consumer market.
Sidewalk devices communicate using one of two radio technologies:
- Bluetooth LE (BLE): Short range (tens of metres), for devices close to a bridge
- Sub-GHz FSK at 900 MHz: Longer range (hundreds of metres to ~1 km in open terrain, less in urban environments)
Both signals are picked up by nearby Sidewalk bridges, which forward the traffic through Amazon’s cloud to your application endpoint. The device doesn’t need a direct connection to your home network or even to any specific bridge — as long as there’s a bridge within range, the message gets through.
What You Can Build on Sidewalk
Amazon provides the Sidewalk SDK (primarily for Nordic Semiconductor nRF9160, nRF52 series, and Silicon Labs EFR32 platforms) along with reference designs and a Sidewalk account registration flow through AWS.
The use cases that fit within Sidewalk’s constraints:
Asset and item tracking. If an asset moves out of Wi-Fi range, a Sidewalk-enabled tracker can still report location through any Sidewalk bridge it encounters. This is the most mature use case — several commercial trackers use Sidewalk as a fallback when Bluetooth range to a paired phone is exceeded.
Remote sensor nodes. Environmental sensors (temperature, humidity, door/window state, soil moisture) that need to report infrequently and don’t require high bandwidth are well suited. A sensor reporting every 15 minutes sends well under 160 KB/day and needs almost no power.
Pet and livestock tracking. Wearable tags for pets or small livestock in suburban or semi-rural areas where Sidewalk coverage from residential Amazon devices exists in the background.
Municipal and campus asset management. In dense residential or commercial areas, Sidewalk bridge density can be high enough to provide reliable coverage across a campus or neighbourhood without deploying any gateway hardware.
What doesn’t fit
High-frequency telemetry. At 500 bytes per message and 160 KB/day per device, you can’t stream sensor data continuously. Sidewalk is for infrequent status updates, not continuous monitoring.
Video or audio. Completely out of scope for the bandwidth available.
Latency-sensitive applications. Sidewalk isn’t designed for real-time control. Message latency is variable and can be seconds to tens of seconds.
Industrial or safety-critical deployments. Sidewalk’s reliability depends on the density of participating Amazon consumer devices nearby. In a remote industrial facility, coverage may be nonexistent.
Coverage and Reliability
This is the big asterisk. Sidewalk coverage is a function of how many Amazon Echo and Ring devices your neighbours have and whether Sidewalk is enabled on them. In dense suburban or urban UK areas, coverage can be surprisingly good — trials have shown meaningful coverage in residential areas of London, Manchester, and other cities where Amazon consumer device penetration is high.
In rural areas or commercial/industrial zones without residential density, coverage may be zero.
You can’t check coverage in advance the way you can with LoRaWAN (which has coverage maps from The Things Network and other operators). You can only test it empirically. This makes Sidewalk a poor fit for deployments where coverage reliability is a hard requirement.
Getting Started with Sidewalk Development
Hardware. Nordic’s Sidewalk reference design uses the nRF9160 SiP (which also supports LTE-M/NB-IoT) alongside the nRF52840 for BLE. Silicon Labs makes the EFR32MG24 platform with Sidewalk SDK support. Both have development kits available (Nordic DK and Silicon Labs xG24 Dev Kit). Budget around £60–90 for a development kit.
SDK. The Amazon Sidewalk SDK is on GitHub (aws/aws-iot-device-sdk-embedded-C includes Sidewalk support). You’ll need an AWS account to register devices and access the Sidewalk API.
Registration. Sidewalk devices must be registered in Amazon’s system. The manufacturing flow requires working with Amazon’s device partner programme for commercial devices, but the developer flow is straightforward for prototyping.
Cloud endpoint. Sidewalk delivers messages to an AWS IoT Core endpoint. From there, you route messages with IoT Core rules to Lambda, DynamoDB, or any other AWS service.
Privacy and Security Considerations
The privacy model of Sidewalk is worth understanding before you deploy or rely on it.
Encryption. Sidewalk uses three layers of encryption: application layer, network layer, and a transport layer. Amazon states it cannot read application payload content, and the bridge devices cannot read the payload either — they act as forwarding nodes without decrypting content.
Traffic metadata. Amazon does have visibility into the fact that a Sidewalk device transmitted, when, and through which bridge. This metadata can infer location and behaviour patterns even without payload access.
Consumer bridge privacy. Sidewalk bridges (your neighbours’ Echo or Ring devices) don’t see your device’s payload or application data, but they do participate in your device’s connectivity. Most consumers using Amazon devices don’t know this is happening, which has implications for enterprise or commercial deployments where your organisation’s devices are using consumer residential infrastructure you don’t control.
For enterprise IoT deployments, this model is unusual enough to warrant legal review before committing to it as infrastructure.
Sidewalk vs LoRaWAN vs NB-IoT
| Amazon Sidewalk | LoRaWAN (Private) | NB-IoT | |
|---|---|---|---|
| Infrastructure required | None (uses Amazon devices) | Gateway(s) | None (carrier) |
| Coverage | Dense populated areas only | Wherever you deploy | Carrier coverage areas |
| Cost | Free | Gateway + hosting | £1–5/device/month |
| Bandwidth | 160 KB/day | 30 KB/day typical | Higher |
| Range | ~1 km | 2–15 km | Wide |
| Predictable coverage | No | Yes (your own) | Yes (carrier) |
| UK commercial viability | Urban/suburban | Any | Any with coverage |
Sidewalk is most valuable as a zero-infrastructure option for consumer-adjacent applications in dense areas, or as a fallback connectivity layer alongside primary Wi-Fi or BLE in asset tracking applications. It’s not a substitute for LoRaWAN or NB-IoT when coverage predictability matters.
Bottom Line
Amazon Sidewalk is a genuinely useful tool for specific IoT use cases in populated areas. The fact that you can build a tracked asset, a remote sensor, or a lost-and-found device that works across a city without deploying any gateway infrastructure is meaningful. The constraints around bandwidth, coverage predictability, and Amazon’s infrastructure dependency are real — but for the right application, they’re acceptable tradeoffs.
The development tooling is mature enough for production use, and the AWS IoT Core integration means backend connectivity is straightforward. Start with the Nordic nRF9160 development kit if you want dual-mode Sidewalk and cellular, or the EFR32-based kit if BLE and sub-GHz are sufficient.