API reference

v1 · Public

Getting started

The EquityPOS Public API lets integrated apps read your product catalog and create approved quotations for a specific location. Access is disabled by default. Enable it under Company Settings → Developer.

Overview

  • One API key per location (not tied to user logins)
  • Keys are shown once when generated. Store them securely.
  • All requests are logged in your company activity log

Base URL

text
https://equitypos.com/api/v1/public

Quick start

Replace YOUR_KEY with a key from Developer settings.

bash
curl -s https://equitypos.com/api/v1/public/ping \
  -H "Authorization: Bearer YOUR_KEY"
json
{
  "data": {
    "ok": true,
    "companyId": "...",
    "locationId": "..."
  }
}