Safer InventorySafer Inventory

API reference

Build on Safer Inventory.

The Safer Inventory REST API lets you build integrations, automate workflows, and sync data across your stack. HMAC-signed keys, per-minute rate limiting, and structured webhooks.

View full documentation

Quick example

Get your inventory in one call

curl -X GET https://api.saferinventory.com/v1/products \
  -H "Authorization: Bearer sk_live_••••••••" \
  -H "Content-Type: application/json"

# Response
{
  "data": [
    {
      "id": "prod_01HXYZ...",
      "sku": "DRILL-20V-001",
      "name": "20V Cordless Drill",
      "stock": [
        { "location": "Main Warehouse", "on_hand": 42 },
        { "location": "Retail Floor",   "on_hand": 6 }
      ]
    }
  ]
}

API keys are HMAC-signed and scoped to specific permissions. Read the authentication guide →