Product Title Generation

Introduction

Product Title Generation is trained on massive e-commerce data. With simple input parameters, it can quickly generate highly attractive titles based on category features, highlighting the product's advantages and helping merchants acquire more traffic.

Use Cases

  • Quickly generate accurate product titles to assist in efficiently releasing new products.

Merchants can input key features to generate titles that meet language direction and platform requirements, helping them quickly list products.

  • Optimize product titles in bulk to improve readability and shopping guide efficiency.

After the product is listed for sale, the title can be optimized by adding the key selling points and matching the platform features.

  • In cross-market distribution scenarios, through adding localization-adapted generation strategies, enhance the effectiveness of titles.

Add localization generation strategies based on language orientation to produce headlines with better readability and accuracy.

Samples

Product Information InputAidge OutputCompetitive Advantages

Product name: Just A Girl Who Loves Animes And Sciences Funny Doctor Anime T-Shirt Design Europe Tops Shirts Hot Sale Cotton Men Top T-Shirts

Product category: Men's Clothing

Men's Funny Doctor Anime T-Shirt Just A Girl Who Loves Animes And Sciences Cotton Europe Tops Hot Sale

Deeply understand and learn from the original text. It can generate titles with the high relevance to the product. It can also adjust the order of words based on the most reasonable order.

Product name: Oto Araç Araba Içi Bardak Tutucu Içecek Tutacağı Bardaklık

Oto Araç İçi Bardak ve İçecek Tutucu

Based on different language markets and platform regulations, accurately generate platform-compliant titles that can be used in cross-platform distribution scenarios.

Adapt generation strategies based on different platform rules, suitable for cross-market and cross-platform distribution scenarios.

Product name: Black Regular/Regular Fit Medium Elastic Waist Laced Color Paneled Shorts TMXXXXXXX

Product category: Shorts

Product description: The product on the mannequin is size M/40/12; Material Composition: 62% Polyester, 38% Cotton; Fabric Type: Knitted; Inner Length Measurement: 21.0 cm; Regular Fit, Non-fitting; Regular Fit: Normal, not wrapping around the body.

Black Elastic Waist Regular Fit Medium Shorts with Laced Color Paneled Design 21cm Inner Length 62% Polyester 38% Cotton

Based on the user's purchasing decision factors, remove meaningless content from the original title, add selling points and product features that can enhance the shopping efficiency.

Key Features

1.Supported Scenarios

The product title generation API can generate SEO-compliant titles according to features of Amazon, AliExpress, Lazada and other e-commerce platforms, in order to obtain the traffic as the main goal, grabbing, summarizing, sorting, combining the core keywords of the product, typically generating ranging from 110 to 140 characters in length.

2.Supported Language Pairs

The product title generation API supports generation between the language pairs listed in the following table. More language pairs are continuously being added. Please contact us via navigation bar or email us (aidge_support@service.alibaba.com) if you have any specific requirements.

Source LanguageTarget Language

Chinese

English

Chinese

Spanish

Chinese

French

Chinese

Portuguese

Chinese

Korean

Chinese

Japanese

Chinese

Vietnamese

Chinese

Thai

Chinese

Turkish

Chinese

Indonesian

Chinese

German

Chinese

Italian

Chinese

Malay

Chinese

Russian

Chinese

Dutch

English

English

English

Spanish

English

French

English

Portuguese

English

Korean

English

Japanese

English

Vietnamese

English

Thai

English

Turkish

English

Indonesian

English

German

English

Italian

English

Malay

English

Russian

English

Dutch

Pricing

To use the API, you are required to choose and purchase an API resource pack from us on a subscription basis.

  • Each resource pack is valid for one calendar year upon successful purchase, and enables you to access the API up to the number of requests specified in the pack. No refunds can be provided.

  • If you need to purchase more QPS due to business requirements, please contact us via navigation bar or email us (aidge_support@service.alibaba.com).

  • Resource packs cannot be used across different products. For example, if you need to use both product text translation and image translation, you must purchase separate resource packs for each.

The prices are as follows:

CapacityPrice (USD)Unit Price(USD)Maximum QPS

100,000 requests

100

$1.00 /1000requests

5

1,000,000 requests

800

$0.80 /1000requests

5

10,000,000 requests

6500

$0.65 /1000requests

5

Quick Start

1. Sample Request

The product title generation API must include the following key parameters: product name, category name, target language. Optional inputs include: attributes, keywords. The more input content provided, the richer and more relevant the generated results will be. Please refer to the following examples. (Note: If the original product title is provided, the API will optimize based on the original title. For new product listings, you can input a one-sentence description of the product or product keyword description to quickly generate a title.)

IopClient client = new IopClient(url, appkey, appSecret);
IopRequest request = new IopRequest();
request.setApiName("/ai/product/title/generation");
request.addApiParameter("targetLanguage", "en");
request.addApiParameter("productName", "Vintage Black Printing Blazer Women Jacket High Street Fashion 2024 Spring Plus Size Elegant Office Lady Coat American Stylish");
request.addApiParameter("productCategory", "[\"Blazers\"]");
request.addApiParameter("generateCounts", "1");
request.addApiParameter("productDescription", "Sleeve Type, style, Sleeve Length, distinctive features, category terms, benefits.");
request.addApiParameter("productKeyword", "[\"chaqueta casual mujer\",\"female blazers jacket\"]");
request.addApiParameter("itemSpec", "[\"service:dropshippingClothing\", \"style\":Europe and America\",\"pattern:Printing\",\"season:spring\"]");
IopResponse response = client.execute(request);
System.out.println(response.getBody());
Thread.sleep(10);

2. Sample Response

  • The output is the generated title content and result information:

{
  "data": {
    "usage": 1,
    "generatedTitle": [
      "Vintage Black Printing Blazer Women's High Street Fashion Office Lady Coat Elegant Plus Size Jacket for Spring 2024 American Style"
    ],
    "class": "com.aidc.service.api.client.text.dto.ProductTitleGenerationResponse"
  },
  "requestId": "2141069c17186253490176155e1cdc",
  "success": true,
  "resCode": 200,
  "resMessage": "success",
  "code": "0",
  "request_id": "212a714317186253490184213",
  "_trace_id_": "2141069c17186253490176155e1cdc"
}

FAQ

  1. What languages does the product title generation API support?

You can refer to the "Supported Language Pairs" section in the "Key Features"of the documentation. More languages are being added. Please contact us via navigation bar or email us (aidge_support@service.alibaba.com) if you have any specific requirements.

  1. What is the product category and how should it be provided?

You can refer to the category structure of any platform and provide the product category name. If a category name is not available, you can provide the product type name. The more complete the category information provided, the more targeted the generated results will be. For example, the result for "in-ear Bluetooth earphones"will be more optimal than just "earphones".

Last updated