Integrates with All E-Commerce Stacks
Learn how to set up and deploy atlowest voice assistants across Shopify, Custom HTML/WooCommerce, and Web/Mobile App architectures.
Shopify Integration
Native theme extension & app blockClick install on the Shopify App Store using your active store URL.
Approve write & read permissions to sync products, cart actions, and ticket databases.
Go to online theme customization, toggle the At Lowest App Block, and you are live in under 2 minutes.
Custom Website Integration
WooCommerce, Custom HTML, Webflow, WixSign up and register your dashboard account on atlowest.com.
Copy your generated API token key from the developer dashboard panel.
Paste the script tag directly before the closing body tag on your website template.
<div id="antigravity-voice-mount" data-shop="your-store.myshopify.com" data-api-base="https://atlowest.com"></div>
<script src="https://atlowest.com/voice-app.js" defer></script>
Configure catalog details, questions, answers, and training vectors inside the developer portal.
Web App / Mobile App Integration
Developers API, REST, and BYOD DatabasesFor developers seeking absolute customization. Connect direct REST API endpoints, spin up Node/Python packages, or connect your Supabase database directly to keep data local.
SDK Quickstart Installation
npm install @atlowest/sdk
Initialize Node SDK client
const client = new AtLowestClient({
apiKey: "your_key_here",
apiBase: "https://api.atlowest.com"
});
// Start real-time voice streaming session
const session = await client.voice.sessions.create({
shop: "at-lowest-2.myshopify.com",
locale: "en-US"
});
Supabase BYOD (Bring Your Own Database) Setup
MERCHANTS with strict requirements can supply their own PostgreSQL/Supabase database coordinates. Under settings inside your dashboard, enter your Supabase connection strings, and the AI agent will query and update ticket summaries locally on your database tables.