Commerce AI (Preview · Invite Only)
Preview · Invite Only. This is a capability preview and technical evaluation reference. Do not use for production usage unless HIOBuy has provided written invitation approval.
No public pricing yet.
creditsshown in this preview are only for internal/evaluator metering and do not represent any commercial price, package, or commitment.
Suggested path: View preview here or request invited evaluation before implementing.
What Commerce AI supports
| Capability | API | Typical use |
|---|---|---|
| Title, SKU, attribute, and description translation | POST /v1/ai/text/translate | Keep product copy consistent while preserving business intent |
| Product localization | POST /v1/ai/product/localize / POST /v1/ai/product/localize/jobs | Generate market-ready titles, bullets, tags, and attributes for a target country |
| Image text translation | POST /v1/ai/image/jobs (replace_chinese_text) | Keep image layout while translating in-product text |
| Remove Chinese text / labels / promo noise | POST /v1/ai/image/jobs (remove_chinese_text) | Remove storefront clutter from product images |
| White background product image | POST /v1/ai/image/jobs (white_background) | Standardize catalog visuals with a clean white canvas |
| Smart HD / enhancement | POST /v1/ai/image/jobs (enhance / upscale) | Recover missing details and improve image quality for catalog use |
| Image analysis | POST /v1/ai/image/analyze | Detect issues and readiness risks before product publishing |
| Pricing suggestion | POST /v1/ai/pricing/suggest | Calculate sell price using exchange rate, multiplier, and rule-based rounding |
Access and environment policy
- This capability is not self-service. Only customers with written HIOBuy invitation and approved technical review may use it.
- Without written invitation, do not call in production or use for live stores.
X-Shop-Domainmust be stable and unique per shop/workspace. Re-using the same domain for each retry is recommended.- Use
X-Idempotency-Keyfor billable requests and job operations. - Image jobs are asynchronous and should be polled via job API.
Base URL and headers
Authorization: Bearer hio_live_xxx
X-Shop-Domain: demo-store.myshopify.com
X-Idempotency-Key: demo-store.myshopify.com:commerce-ai:request-001
Content-Type: application/jsonRoute index
Core AI APIs (OpenAPI tag: Commerce AI)
| Method | Path | Auth |
|---|---|---|
| POST | /v1/ai/text/translate | API Key + headers |
| POST | /v1/ai/product/localize | API Key + headers |
| POST | /v1/ai/product/localize/jobs | API Key + headers |
| POST | /v1/ai/image/analyze | API Key + headers |
| POST | /v1/ai/image/jobs | API Key + headers |
| GET | /v1/ai/jobs/:job_id | API Key |
| GET | /v1/ai/assets/:job_id.webp | Public |
| POST | /v1/ai/pricing/suggest | API Key + headers |
Credit and ledger APIs (OpenAPI tag: AI Credits)
| Method | Path | Auth |
|---|---|---|
| GET | /v1/ai/credits | API Key |
| POST | /v1/ai/credits/estimate | API Key + headers |
| GET | /v1/ai/credits/transactions | API Key + headers |
| GET | /v1/ai/credits/pricing | API Key |
Endpoints
POST /v1/ai/text/translate
Translate ecommerce titles, SKU values, attributes and descriptions.
{
"texts": [
"夏季纯棉短袖T恤",
"白色",
"加大码"
],
"source_language": "zh",
"target_language": "en",
"format_type": "text",
"scene": "e-commerce-title"
}Supported scene values:
e-commerce-titlee-commerce-descriptione-commerce-cpve-commerce-chat
POST /v1/ai/product/localize
Synchronous localization example:
{
"source": "1688",
"source_url": "https://detail.1688.com/offer/example.html",
"origin_language": "zh-CN",
"language": "en",
"target_market": "US",
"shop_currency": "USD",
"product": {
"title": "厂家直销 桌面收纳盒",
"description": "适用于办公桌、梳妆台与厨房台面。",
"attributes": [
{
"name": "材质",
"value": "塑料"
},
{
"name": "颜色",
"value": "白色 / 绿色"
}
]
},
"preferences": {
"tone": "professional",
"avoid_claims": true,
"title_max_length": 80,
"seo_title_max_length": 70,
"seo_description_max_length": 160
}
}POST /v1/ai/product/localize/jobs
Asynchronous product localization job.
{
"source": "1688",
"source_url": "https://detail.1688.com/offer/example.html",
"origin_language": "zh-CN",
"language": "en",
"target_market": "US",
"shop_currency": "USD"
}- Status flow:
queued→running→completed/failed. - Job credits are reserved on queue; failed jobs are refunded.
- Poll
GET /v1/ai/jobs/{job_id}.
POST /v1/ai/image/jobs
Supported image type values:
replace_chinese_textremove_chinese_textwhite_backgroundreplace_backgroundenhanceupscalelifestyle_generation
{
"type": "white_background",
"image_url": "https://cdn.example.com/original-product.jpg"
}For replace_chinese_text, add target_language.
Output handling
Completed job output URL is temporary. Download from the job output or /v1/ai/assets/{job_id}.webp, then re-host into your storefront/media system before persisting final URLs.
POST /v1/ai/image/analyze
Image readiness signal for catalog use:
{
"shop": "demo-store.myshopify.com",
"target_market": "US",
"images": [
{
"url": "https://cdn.example.com/original-product.jpg",
"role": "cover"
}
]
}Common response fields include:
contains_chinese_texthas_watermarkis_collagequality_scoreshopify_readinessrecommended_actions
POST /v1/ai/pricing/suggest
{
"shop": "demo-store.myshopify.com",
"origin_amount": 38.5,
"origin_currency": "CNY",
"shop_currency": "USD",
"exchange_rate": 0.14,
"multiplier": 2.8,
"rounding": "x.99"
}Credits note
GET /v1/ai/credits and GET /v1/ai/credits/pricing return effective metering values used in this preview.
- Credits here are operational metrics for internal invited testing.
- Values may change between versions and do not represent any commercial commitment.
- For production commercial usage terms, only signed HIOBuy invitation terms apply.
Commerce AI (Preview) access
For technical evaluation only:
- Confirm capability fit and integration scope in documentation.
- Share your expected scenarios and volume with HIOBuy.
- Apply for invited evaluation if your use case is approved.
- After written invitation, follow your assigned key scope and quota rules.
Contact: support@hiobuy.com
For authoritative API definitions, see HIOBuy OpenAPI .
Get Support
Need integration help? Contact Developer Support at support@hiobuy.com · Response within 1–2 business days