60-second quickstart

Your first transaction, posted from curl.

Authenticate with your sandbox key, post a sale to the Super POS Engine, and watch it appear in your console — all in under a minute.

Open docs → Postman collection
# 1. Get a sandbox token curl -X POST https://api.azraqai.com/v4/auth \ -H "X-Azraq-Key: $AZRAQ_SANDBOX" # 2. Post a sale curl -X POST https://api.azraqai.com/v4/sales \ -H "Authorization: Bearer $TOKEN" \ -d '{ "register_id": "reg_001", "items": [{"sku":"L-OAT-LG","qty":1}], "tender": "card" }' # 3. Subscribe to events azraq webhooks create \ --topic sale.completed \ --url https://yourapp.com/azraq-hook
Documentation

Browse the docs.

Need help integrating?

Office hours every Tuesday 10–12 UTC with an Azraq engineer. Drop into the Developer Discord any time.

Join Discord Book office hours
Changelog

What we shipped this month.

v4.2.1 · May 12, 2026 FEATURE

Webhook replay window extended to 30 days

Re-deliver any event from the past month with one click or one API call.

v4.2.0 · May 4, 2026 BREAKING

v4 GraphQL schema is now the default

v3 is supported through Q4 2026. Migration guide in docs.

v4.1.8 · Apr 21, 2026 IMPROVEMENT

SDKs auto-retry on transient 5xx

Exponential backoff with jitter, capped at 5 retries. Configurable per client.