Product Description Generation
Introduction
The Product Description Generation is designed to enhance product SEO performance. Users only need to input brief information, and the tool quickly generates compelling product descriptions that showcase key features and benefits. This helps improve product rankings, boosts click-through rates, and drives conversions for merchants.
Use Cases
Increase Efficiency for Sellers: Quickly create captivating product descriptions to optimize rankings, ensuring new product releases gain timely attention and traffic.
Enhance Competitive Edge: Optimize product descriptions to highlight unique selling points and advantages, differentiating products from competitors and attracting more potential customers.
Sample
【English Title】 Sock Clip Outdoor Drying Rack, Windproof, Dipped Rubber, 10 Clips, Stainless Steel Clothes Drying Rack, Coated Hanger, Non-Slip Clips, Balcony Sock Rack
【Attributes】 Product Category, Material, Color, Style
This outdoor sock hanger features windproof design, rubber-dipped anti-slip clips, and durable stainless steel construction. Ideal for balconies, it efficiently dries socks, coats, and garments in a space-saving, modern style.
Quick Start
1. Sample Request
/*The domain url of the API.
*for api purchased on global site. set api_domain to "https://api.aidc-ai.com"
*for api purchased on chinese site. set api_domain to "https://cn-api.aidc-ai.com"*/
IopClient client = new IopClientImpl("domain url", "your key", "your secret");
IopRequest request = new IopRequest();
request.setApiName("/ai/text/smb/product/description");
// If the formal quota is not purchased, please add a trial mark; otherwise, a "NoResource" error code will be received.
// request.addHeaderParameter("x-iop-trial","true");
request.addHeaderParameter("x-iop-trial","true");
JSONObject jsonObject = new JSONObject();
jsonObject.put("title", "不锈钢橱柜脚可调节家具沙发脚支撑腿床脚茶几支撑脚桌脚电视柜脚");
jsonObject.put("pcate_leaf_name", "紧固件");
String[] properties = {"材质不锈钢", "规格C款不锈钢可调脚(拉丝)", "规格C款不锈钢可调脚(白色)", "规格C款不锈钢可调脚(黑色)", "规格不锈钢可调脚(拉丝)", "规格不锈钢可调脚(白色)","规格不锈钢可调脚(黑色)", "规格全钢脚", "规格重型B款可调脚(拉丝)", "规格重型B款可调脚(白色)", "规格重型B款可调脚(黑色)", "货号AL-527800489897","计量单位个", "适用范围家具家装", "风格现代简约"};
jsonObject.put("properties", properties);
request.addApiParameter("paramJson", jsonObject.toString());
IopResponse response = client.execute(request);
System.out.println(response.getBody());
Thread.sleep(10);
2. Sample Response
The output is the generated description content and result information:
{
"data": {
"result": {
"data": {
"message": [
],
"structData": {
"description": "Adjustable stainless steel furniture legs in modern design, available in brushed, white, and black finishes. Durable, heavy-duty support for cabinets, sofas, beds, tables, and desks, ideal for home furniture use.",
"error_code": 0
}
},
"success": true,
"requestId": "2140e84617521556007668190e599f"
}
},
"requestId": "2140e84617521556007668190e599f",
"resCode": 200,
"resMessage": "success",
"code": "0",
"request_id": "0babebb817521556007683484",
"_trace_id_": "2140e84617521556007668190e599f"
}
If you have further questions about the product, please contact us via Discord or email us ([email protected]).
Last updated
Was this helpful?