Get key insights from text
This endpoint extracts key insights from any given text content.
Endpoint
POST /api/v1/get-key-insights-from-text
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
text | string | Yes | The text content to analyze |
amount | integer | No | Number of insights to extract (min: 3, max: 10, default: 3) |
Response
A successful response will return a JSON object with the following properties:
{
"data": {
"key_insights": [
"First key insight from the content",
"Second important point extracted",
"Third valuable takeaway identified"
]
}
}
Example
curl https://nobinge.com/api/v1/get-key-insights-from-text \
-X POST \
-H "Authorization: Bearer your_token_here" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{
"text": "Your text content goes here...",
"amount": 5
}'