API Reference - Noverload Docs

Pro

Complete 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

Base URL

https://app.noverload.com/api/mcp

Authentication

Include your API token in the Authorization header:

Authorization: Bearer YOUR_API_TOKEN

Endpoints

GET

/content

List 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 pagination
  • contentType - Filter by type (youtube, article, pdf, etc.)
  • status - Filter by status (pending, processing, completed)
  • tags - Comma-separated list of tags

GET

/content/:id

Get detailed information about a specific content item

Response Fields

  • id - Unique content identifier
  • url - Original content URL
  • title - Content title
  • summary - AI-generated summary
  • keyInsights - Array of key insights
  • actions - Extracted action items
  • transcript - Full text/transcript (if available)

POST

/content

Save new content for processing

Request Body

{
"url": "https://www.youtube.com/watch?v=...",
"tags": ["optional", "tags"],
"notes": "Optional personal notes"
}

POST

/search

Semantic search across all your content

Request Body

{
"query": "Your search query",
"limit": 10,
"filters": {
  "contentType": "youtube",
  "tags": ["productivity"]
}
}

GET

/actions

List action items extracted from your content

Query Parameters

  • completed - Filter by completion status (true/false)
  • contentId - Filter by content ID
  • goalId - Filter by goal ID

POST

/actions/:id/complete

Mark an action item as completed

GET

/goals

List user goals (Health, Wealth, Relationships)

Response Codes

CodeDescription
200Success
201Created
400Bad Request
401Unauthorized
404Not Found
429Rate Limited
500Server Error
By Noverload Team
Last updated: 8/22/2025