Skip to main content

Content Summarizer

Create bullet point summaries of any content using various AI models through the 1min.AI API. This endpoint supports multiple language models for summarizing content with customizable bullet points and word count.

Available Models

Loading available models...

Request Parameters

All models share the same request structure:

Field NameTypeSupported ValueDescriptionRequired
typetextSUMMARIZERFeature name✔️
modeltextSee available modelsModel identifier✔️
conversationIdtextSUMMARIZERConversation ID✔️
promptObject.tonestringinformativeTone of summary✔️
promptObject.numberOfBulletnumber5Number of bullet points✔️
promptObject.numberOfWordnumber20Words per bullet point✔️
promptObject.promptstringContent to summarizeText to summarize✔️

Endpoint

Request Headers

FieldValue
API-KEY<api-key>
Content-Typeapplication/json

Code Example

curl --location 'https://api.1min.ai/api/features' \
--header 'API-KEY: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"type": "SUMMARIZER",
"model": "gpt-4o",
"conversationId": "SUMMARIZER",
"promptObject": {
"tone": "informative",
"numberOfBullet": 5,
"numberOfWord": 20,
"prompt": "Artificial Intelligence (AI) is a rapidly evolving field that encompasses machine learning, natural language processing, computer vision, and robotics. AI systems are designed to perform tasks that typically require human intelligence, such as problem-solving, decision-making, and pattern recognition. The technology has applications across various industries including healthcare, finance, transportation, and entertainment."
}
}'

Interactive Playground

Try the API directly in your browser:

Loading interactive playground...

Response Format

{}