API Reference - Noverload Docs
ProComplete REST API reference for Noverload. Learn how to integrate Noverload into your applications with our comprehensive API documentation.
API Reference
Pro
Complete reference for the Noverload REST API
This is a comprehensive API reference. For a quick introduction, see the API Integration guide.
Base URL
https://app.noverload.com/api/mcp
Authentication
Include your API token in the Authorization header:
Authorization: Bearer YOUR_API_TOKEN
Endpoints
GET
/contentList all saved content with optional filtering
Query Parameters
limit- Number of items to return (default: 20, max: 100)offset- Number of items to skip for paginationcontentType- Filter by type (youtube, article, pdf, etc.)status- Filter by status (pending, processing, completed)tags- Comma-separated list of tags
GET
/content/:idGet detailed information about a specific content item
Response Fields
id- Unique content identifierurl- Original content URLtitle- Content titlesummary- AI-generated summarykeyInsights- Array of key insightsactions- Extracted action itemstranscript- Full text/transcript (if available)
POST
/contentSave new content for processing
Request Body
{
"url": "https://www.youtube.com/watch?v=...",
"tags": ["optional", "tags"],
"notes": "Optional personal notes"
}POST
/searchSemantic search across all your content
Request Body
{
"query": "Your search query",
"limit": 10,
"filters": {
"contentType": "youtube",
"tags": ["productivity"]
}
}GET
/actionsList action items extracted from your content
Query Parameters
completed- Filter by completion status (true/false)contentId- Filter by content IDgoalId- Filter by goal ID
POST
/actions/:id/completeMark an action item as completed
GET
/goalsList user goals (Health, Wealth, Relationships)
Response Codes
| Code | Description |
|---|---|
200 | Success |
201 | Created |
400 | Bad Request |
401 | Unauthorized |
404 | Not Found |
429 | Rate Limited |
500 | Server Error |