Start here
Pick your path
Two ways in: get the team shooting in minutes, or wire Shelfshoot into your own stack.
Getting started
Create your account, open the scan station from a QR code, and publish your first image to a connected shop.
Read the guide →API reference
The full REST API, live and interactive. Authenticate, look up products by SKU, upload images and read usage — try every endpoint in the browser.
Open the API explorer →Help center
Step-by-step guides with real screenshots: the scan station, the image log, watermarks, output sizes, plans and FAQ.
Browse the guides →Connect a platform
Integration setup
Shelfshoot matches images to products by SKU or barcode and uploads them straight to the right item. Choose your platform — or bring your own backend.
Core concepts
Auth & webhooks
The two things every integration touches. Full schemas and live examples live in the API reference.
Authentication
Every API request is authenticated with a bearer token from your portal. Send it in the Authorization header — keep it server-side, never in client code.
GET /api/v1/products?sku=24B-500-BK Authorization: Bearer sk_live_… Accept: application/json
Webhooks
Subscribe to events so your systems react in real time — a new image processed, a product matched, or an upload published to your store. Each delivery is signed so you can verify it.
// POST to your endpoint { "event": "image.published", "sku": "24B-500-BK", "store": "shopify" }