REST API, WooCommerce plugin, and Shopify app — everything you need to integrate your store with Apex POS.
Choose the integration that fits your platform and get your store synced in minutes.
Full programmatic access to products, inventory, invoices, customers and more. Use any language.
Explore API →Install our plugin and sync your WooCommerce store with Apex POS automatically.
Download Plugin →Connect your Shopify store to Apex POS with OAuth in a few clicks.
Install App →All API requests are made to this base URL. Append the endpoint path to this URL.
All API requests require an API key passed in the header:
From zero to your first API response in under 5 minutes.
Go to your Apex POS panel → REST API → Generate API Key. Copy the key — it won't be shown again.
Send a GET request to the health endpoint to verify your connection.
curl -H "X-API-Key: apx_your_key" \ https://api.apex-pos.com/rest_api/v1/health
const res = await fetch('https://api.apex-pos.com/rest_api/v1/health', { headers: { 'X-API-Key': 'apx_your_key' } }); const data = await res.json(); console.log(data);
import requests res = requests.get( 'https://api.apex-pos.com/rest_api/v1/health', headers={'X-API-Key': 'apx_your_key'} ) print(res.json())
Explore the full endpoint reference and start syncing products, inventory, and orders.
View Docs