A Deterministic Editing Platform, Exposed as APIs
Fashion-aware pipelines that your devs can call: contextual crops, compliance-ready exports, and consistent outputs across thousands of SKUs.
- Job-based processing with idempotent exports
- Category & marketplace templates (Amazon, , Flipkart, Shopify)
- Automated QC checks with human-in-the-loop gates (optional)
- Audit trails for every asset version
Developer Quick Start
Kick off a job, poll status, and fetch results. Full specs in the API Docs.
Create Job (cURL)
curl -X POST https://api.zyngai.com/v1/jobs \
-H "Authorization: Bearer <API_KEY>" \
-H "Content-Type: application/json" \
-d '{
"workflow": "_gallery",
"inputs": [{"url": "https://cdn.brand.com/sku123.jpg"}],
"options": {"crop":"subject_focus","watermark":"brand-light"}
}'
Poll Status (Node)
import fetch from "node-fetch";
const id = "job_abc123";
const res = await fetch(`https://api.zyngai.com/v1/jobs/${id}`, {
headers: { Authorization: `Bearer ${process.env.ZYNG_API_KEY}` }
});
const json = await res.json();
console.log(json.status, json.outputs?.[0]?.url);
Download Result (Python)
import requests
r = requests.get("https://api.zyngai.com/v1/jobs/job_abc123/result",
headers={"Authorization": "Bearer <API_KEY>"})
open("result.jpg","wb").write(r.content)
Webhooks for Real-Time Ops
Subscribe to job lifecycle events to keep your PIM/DAM in sync.
-
job.created,job.processing,job.completed,job.failed - Secured with HMAC signatures
POST /webhooks/zyng (example payload)
{
"type": "job.completed",
"id": "evt_123",
"data": {
"job_id": "job_abc123",
"outputs": [{"url": "https://cdn.zyngai.com/outputs/abc.jpg"}]
},
"signature": "t=1723456789,v1=..."
}
Enterprise Controls
Governance, reliability, and auditability for large teams.
Role-Based Access
Keys & roles for dev, ops, and partners. Project scoping and usage limits.
Audit & Versioning
Track every edit, template, and export across collections.
Compliance Presets
Amazon//Flipkart/Shopify specs with automated QC checks.
Security by Design
- Token-based auth (scoped API keys)
- Encrypted at rest & in transit (TLS)
- Request signing for webhooks (HMAC)
- Data retention policies & GDPR-friendly deletion
SLA & Reliability
Global infrastructure, job retries, and idempotent exports. Priority lanes for large drops.
- Measured P95 times per workflow
- Burst handling for launches & sales
- Dedicated support & solution engineering
Integration Patterns
Plug into PIM/DAM or your CMS: Jobs + Webhooks + CDN export.
Start Building with the Zyng AI API
Secure, scalable, and tuned for fashion e-commerce. Launch in days, not months.