Quick Start
Follow the first-call path from API key to size recommendation quality gate.
Developer Portal
Sign in
TailorIQ Commercial API
AuroIQ gives commerce teams a secure API for TailorIQ-powered size guidance. Generate a pilot key, make a first request, copy sample code, and prepare your storefront integration.
Developer Home
Follow the first-call path from API key to size recommendation quality gate.
Use versioned JSON endpoints for scan creation, status, results, reports, and history.
Upload front and side photos, run a live TailorIQ request, inspect JSON, and copy sample calls.
Launch playground →Coming Soon React, React Native, Android, and iOS SDKs are planned.
Shopify, WooCommerce, Bagisto, and Magento pilots use server-side API key handling.
API Keys
Signed-in developers can create, regenerate, and revoke TailorIQ API credentials. Raw keys are shown once and never returned by metadata views.
No new key generated in this browser session
Keys are shown once and kept only in page memory for copying. Store live keys in a server-side secret manager. Do not paste keys into storefront JavaScript.
Quick Start
Test the API
Use this lightweight tester for development verification. It does not persist keys, responses, or scan identifiers.
API Reference
/v1/tailoriq/scansCreate a size-recommendation processing session.
/v1/tailoriq/scans/{scan_id}Get status for a processing session.
/v1/tailoriq/scans/{scan_id}/resultGet validated measurements and confidence gates.
/v1/tailoriq/scans/{scan_id}/reportGet report metadata for a completed session.
/v1/tailoriq/scansGet history with limit, page, and status filters.
Code Examples
curl -sS -X POST "$AUROIQ_API/v1/tailoriq/scans" \
-H "Content-Type: application/json" \
-H "X-AuroIQ-Key: $AUROIQ_API_KEY" \
-d '{"front_image":"data:image/jpeg;base64,...","side_image":"data:image/jpeg;base64,..."}'
import os
import requests
response = requests.post(
f"{os.environ['AUROIQ_API']}/v1/tailoriq/scans",
headers={"X-AuroIQ-Key": os.environ["AUROIQ_API_KEY"]},
json={"front_image": "...", "side_image": "..."},
timeout=30,
)
print(response.json())
const response = await fetch(`${process.env.AUROIQ_API}/v1/tailoriq/scans`, {
method: "POST",
headers: {
"Content-Type": "application/json",
"X-AuroIQ-Key": process.env.AUROIQ_API_KEY,
},
body: JSON.stringify({ front_image: "...", side_image: "..." }),
});
console.log(await response.json());
Commerce Integrations
Installable app for product-page size recommendation pilots.
WordPress plugin with server-side TailorIQ API calls.
Laravel commerce extension for open-source storefront teams.
Enterprise commerce connector planned after pilot demand.
Frontend components that pair with a secure partner backend.
Mobile integration path for app-based shopping flows.
Pricing
AuroIQ commercial pilots are priced around TailorIQ recommendation volume, integration support, and enterprise requirements.
Support
Talk with AuroIQ about production keys, enterprise integration, security review, and commerce launch support.