Get key insights from webpage
This endpoint extracts key insights from any webpage content.
Endpoint
POST /api/v1/get-key-insights-from-webpage
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
url | string | Yes | The webpage URL 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": {
"url": "https://example.com/article",
"title": "Article Title",
"key_insights": [
"First key insight from the webpage",
"Second important point extracted",
"Third valuable takeaway identified"
]
}
}
Example
curl https://nobinge.com/api/v1/get-key-insights-from-webpage \
-X POST \
-H "Authorization: Bearer your_token_here" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com/article",
"amount": 5
}'