
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
@sharpapi/sharpapi-node-product-description
Advanced tools
SharpAPI.com Node.js SDK for generating product descriptions

SharpAPI Product Description Generator creates compelling, SEO-optimized product descriptions from raw product data. Supports multiple languages, customizable tone of voice, and length control. Perfect for e-commerce platforms, product catalogs, and marketplace listings.
npm install @sharpapi/sharpapi-node-product-description
Visit SharpAPI.com to get your API key.
const { SharpApiProductDescriptionService } = require('@sharpapi/sharpapi-node-product-description');
const apiKey = process.env.SHARP_API_KEY; // Store your API key in environment variables
const service = new SharpApiProductDescriptionService(apiKey);
const productData = 'Wireless Bluetooth Headphones, 40mm drivers, active noise cancellation, 30-hour battery, foldable design, USB-C charging';
async function generateDescription() {
try {
// Submit processing job
const statusUrl = await service.generateProductDescription(productData);
console.log('Job submitted. Status URL:', statusUrl);
// Fetch results (polls automatically until complete)
const result = await service.fetchResults(statusUrl);
console.log('Result:', result.getResultJson());
} catch (error) {
console.error('Error:', error.message);
}
}
generateDescription();
generateProductDescription(productData, language?, maxLength?, voiceTone?, context?)Generates a professional product description from the provided product data.
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
productData | string | Yes | Product details, features, and key information |
language | string | No | Output language (default: English) |
maxLength | number | No | Maximum character length of the description |
voiceTone | string | No | Tone of the description (e.g., "Professional", "Casual", "Luxury") |
context | string | No | Additional context for the AI (e.g., target audience, platform) |
Returns: Promise - Status URL for polling results
POST /ecommerce/product_description
Request Body:
{
"content": "Product details and features...",
"language": "English",
"max_length": 500,
"voice_tone": "Professional",
"context": "Additional context for the AI..."
}
This project is licensed under the MIT License. See the LICENSE.md file for details.
FAQs
SharpAPI.com Node.js SDK for generating product descriptions
The npm package @sharpapi/sharpapi-node-product-description receives a total of 3 weekly downloads. As such, @sharpapi/sharpapi-node-product-description popularity was classified as not popular.
We found that @sharpapi/sharpapi-node-product-description demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.