Noughty Reality
Noughty Reality turns a captured space into a virtual tour you can embed in your own product. A space is scanned once; from then on it is available as structured data — floors, rooms and panoramic scans — and as ready-made screens that render that data.
Products
| Product | Use it when | Status |
|---|---|---|
| Web SDK | You are embedding tours in a website or web app | Available |
| iOS SDK | You are embedding tours in a native iOS app | In progress |
How an integration fits together
Three parties are involved, and the split matters because it is what keeps your signing key on your own servers:
- Your backend mints a short-lived JWT for the signed-in user and publishes the public half of its signing key as a JWK Set.
- Your frontend holds an SDK client, which asks your backend for that token before every call.
- The Noughty Tours API verifies the token against your published key set and returns only the tours belonging to that organisation.
We never see your private key. You never see a shared secret from us. The only thing you register with us is a URL — see Authentication.
Where to start
- New to the data model? Read Core concepts first — it is short, and every page after it assumes those four nouns.
- Ready to write code? Quick start gets a list of tours on screen.
- Prefer working code to reference docs? Two example repositories make a complete integration: noughty-tours-web-demo is the React frontend, and noughty-tours-web-backend-demo is the backend that mints its tokens.