atlowest
PLATFORM CONTEXTS

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 block
Step 1

Click install on the Shopify App Store using your active store URL.

Step 2

Approve write & read permissions to sync products, cart actions, and ticket databases.

Step 3

Go to online theme customization, toggle the At Lowest App Block, and you are live in under 2 minutes.

Add to Shopify Store

Custom Website Integration

WooCommerce, Custom HTML, Webflow, Wix
Step 1

Sign up and register your dashboard account on atlowest.com.

Step 2

Copy your generated API token key from the developer dashboard panel.

Step 3

Paste the script tag directly before the closing body tag on your website template.

<!-- Copy and paste directly before the </body> tag -->
<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>
Step 4

Configure catalog details, questions, answers, and training vectors inside the developer portal.

Web App / Mobile App Integration

Developers API, REST, and BYOD Databases

For 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

# Install via npm package manager
npm install @atlowest/sdk

Initialize Node SDK client

import { AtLowestClient } from "@atlowest/sdk";

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.