SharpAPI.com Node.js SDK for summarizing text
npm install @sharpapi/sharpapi-node-summarize-text

SharpAPI Text Summarization uses advanced AI to create concise, accurate summaries of long-form content. Perfect for articles, documents, reports, and more.
---
1. Requirements
2. Installation
3. Usage
4. API Documentation
5. Examples
6. License
---
- Node.js >= 16.x
- npm or yarn
---
``bash`
npm install @sharpapi/sharpapi-node-summarize-text
Visit SharpAPI.com to get your API key.
---
`javascript
const { SharpApiSummarizeTextService } = require('@sharpapi/sharpapi-node-summarize-text');
const apiKey = process.env.SHARP_API_KEY; // Store your API key in environment variables
const service = new SharpApiSummarizeTextService(apiKey);
const longText =
Artificial intelligence (AI) has revolutionized numerous industries in recent years.
From healthcare to finance, AI-powered systems are helping organizations make better
decisions, automate complex processes, and improve customer experiences. Machine
learning algorithms can now analyze vast amounts of data in seconds, identifying
patterns that would take humans years to discover. As AI technology continues to
advance, we can expect even more transformative applications across all sectors
of the economy.;
async function summarizeContent() {
try {
// Submit summarization job
const statusUrl = await service.summarizeText(longText, 'English', 50);
console.log('Job submitted. Status URL:', statusUrl);
// Fetch results (polls automatically until complete)
const result = await service.fetchResults(statusUrl);
console.log('Summary:', result.getResultJson());
} catch (error) {
console.error('Error:', error.message);
}
}
summarizeContent();
`
---
#### summarizeText(text: string, language?: string, maxLength?: number, context?: string): Promise
Summarizes the provided text into a concise version.
Parameters:
- text (string, required): The text content to summarizelanguage
- (string, optional): The language of the text (default: 'English')maxLength
- (number, optional): Maximum length of summary in words (default: 100)context
- (string, optional): Additional context to guide summarization
Returns:
- Promise
Example:
`javascript`
const statusUrl = await service.summarizeText(
longArticle,
'English',
75,
'Focus on key technological advances'
);
const result = await service.fetchResults(statusUrl);
The API returns the summarized text:
`json`
{
"summary": "AI has revolutionized industries by enabling data analysis and automation...",
"original_length": 423,
"summary_length": 50,
"compression_ratio": 0.12
}
---
`javascript
const { SharpApiSummarizeTextService } = require('@sharpapi/sharpapi-node-summarize-text');
const service = new SharpApiSummarizeTextService(process.env.SHARP_API_KEY);
const article =
[Your long article content here...];
service.summarizeText(article, 'English', 100)
.then(statusUrl => service.fetchResults(statusUrl))
.then(result => {
const summary = result.getResultJson();
console.log('Original length:', summary.original_length, 'words');
console.log('Summary length:', summary.summary_length, 'words');
console.log('Summary:', summary.summary);
})
.catch(error => console.error('Summarization failed:', error));
`
`javascript
const service = new SharpApiSummarizeTextService(process.env.SHARP_API_KEY);
const documents = [
{ title: 'AI Report 2024', content: '...' },
{ title: 'Market Analysis', content: '...' },
{ title: 'Tech Trends', content: '...' }
];
const summaries = await Promise.all(
documents.map(async (doc) => {
const statusUrl = await service.summarizeText(doc.content, 'English', 50);
const result = await service.fetchResults(statusUrl);
return {
title: doc.title,
summary: result.getResultJson().summary
};
})
);
console.log('Document summaries:', summaries);
`
`javascript
const service = new SharpApiSummarizeTextService(process.env.SHARP_API_KEY);
const technicalDoc = [Long technical documentation...];
const statusUrl = await service.summarizeText(
technicalDoc,
'English',
100,
'Focus on API endpoints and authentication methods'
);
const result = await service.fetchResults(statusUrl);
console.log('Technical summary:', result.getResultJson().summary);
`
---
- Content Curation: Create summaries for news aggregation platforms
- Research: Quickly understand academic papers and research documents
- Business Intelligence: Summarize reports and market analyses
- Email Management: Generate summaries of long email threads
- Documentation: Create executive summaries of technical documents
- Social Media: Generate post previews from long-form content
- E-learning: Provide study summaries of educational materials
---
POST /content/summarize`
For detailed API specifications, refer to:
- Postman Documentation
- Product Page
---
- @sharpapi/sharpapi-node-translate - Text translation
- @sharpapi/sharpapi-node-paraphrase - Text paraphrasing
- @sharpapi/sharpapi-node-generate-keywords - Keyword extraction
- @sharpapi/sharpapi-node-client - Full SharpAPI SDK
---
This project is licensed under the MIT License. See the LICENSE.md file for details.
---
- Documentation: SharpAPI.com Documentation
- Issues: GitHub Issues
- Email: contact@sharpapi.com
---
Powered by SharpAPI - AI-Powered API Workflow Automation