YOUTUBE STRATEGY INNOTION

Turn your Notion workspace into a YouTube content command center. Auto-populate video ideas, scripts, titles, and schedules from Niche King's 12 AI tools.

Get StartedQuick Setup

Notion + API access is included with every plan

No separate API pricing. Subscribe to any plan, generate your API key, and connect instantly.

AI YouTube Strategist

$197/mo

Annual: $1,970/yr — save $394

  • Full AI tool suite (12 tools)
  • Niche research engine (500+ videos)
  • Titles, scripts, thumbnails on demand
  • Strategy reports & content calendar
  • Works in Claude, Cursor & Windsurf
  • API: 500 calls/day
Get Started — $197/mo
MOST POPULAR

Group Coaching

$497/mo

Annual: $4,970/yr — save $994

Everything in Strategist, plus:

  • 3 live group coaching calls/week
  • Hot seat audits & Q&A
  • Ask questions 24/7
  • Up to 10 channels
  • API: 2,000 calls/day
Join Group Coaching — $497/mo

The Inner Circle

$1,497/mo

Annual: $14,970/yr — save $2,994

Everything in Group Coaching, plus:

  • We build your full strategy
  • Direct message access to Jeremy
  • Annual conference in Dallas
  • Monthly performance reports
  • Accountability check-ins
  • API: 5,000 calls/day
Join Inner Circle — $1,497/mo

All plans include full MCP Server + REST API access. Up to 5 API keys per account. Cancel anytime.

3 Ways to Connect

Option 1: Zapier

Use "Webhooks by Zapier" as trigger + "Notion" as action

When content is generated in Niche King → auto-create a Notion page

View Full Setup Guide →
🔧

Option 2: Make

Use Make's HTTP module + Notion module

Build visual workflows: Niche King webhook → Notion page/database

View Full Setup Guide →
💻

Option 3: Direct API

Call both Niche King API and Notion API from your own code

Full control over workflows with custom logic and data mapping

What You Can Automate

Content Calendar

Auto-populate your Notion calendar with video ideas from research

Script Database

Generate scripts and save them as Notion pages with tags and status

Title Brainstorming

Create a title ideas database that updates every time you generate

Research Log

Log niche research results and competitor analysis to Notion

Production Pipeline

Track video status (planned → scripted → filmed → published) synced with Niche King

Schedule Sync

Mirror your Niche King weekly schedule in Notion

Code Examples

Node.js Example

const nk = require('axios');
const { Client } = require('@notionhq/client');

async function generateAndSave() {
  // 1. Call Niche King API
  const titles = await nk.post('https://app.nicheking.video/api/generate/titles', {
    niche_profile: { focused_niche: 'YouTube Growth' },
    tool_type: 'titles'
  }, {
    headers: { 'Authorization': `Bearer ${process.env.NK_API_KEY}` }
  });

  // 2. Create Notion page
  const notion = new Client({ auth: process.env.NOTION_API_KEY });
  await notion.pages.create({
    parent: { database_id: process.env.NOTION_DB_ID },
    properties: {
      'Title': { title: [{ text: { content: titles.data.titles[0] } }] },
      'Generated From': { rich_text: [{ text: { content: 'Niche King API' } }] },
      'Status': { status: { name: 'Draft' } }
    }
  });
}

generateAndSave();

Python Example

import requests
import os
from notion_client import Client

def generate_and_save():
    # 1. Call Niche King API
    nk_response = requests.post(
        'https://app.nicheking.video/api/generate/titles',
        headers={'Authorization': f"Bearer {os.getenv('NK_API_KEY')}"},
        json={'niche_profile': {'focused_niche': 'YouTube Growth'}, 'tool_type': 'titles'}
    )
    titles = nk_response.json()['titles']

    # 2. Create Notion page
    notion = Client(auth=os.getenv('NOTION_API_KEY'))
    notion.pages.create(
        parent={'database_id': os.getenv('NOTION_DB_ID')},
        properties={
            'Title': {'title': [{'text': {'content': titles[0]}}]},
            'Generated From': {'rich_text': [{'text': {'content': 'Niche King API'}}]},
            'Status': {'status': {'name': 'Draft'}}
        }
    )

if __name__ == '__main__':
    generate_and_save()

Setup Steps

  1. 1.Create an API key at nicheking.video/api-keys
  2. 2.Create a Notion integration at notion.so/my-integrations and get your API key
  3. 3.Find your Notion database ID by opening the database and copying the ID from the URL
  4. 4.Set environment variables: NK_API_KEY, NOTION_API_KEY, NOTION_DB_ID
  5. 5.Run the script and watch your Notion database auto-populate

Ready to Connect?

Start automating your YouTube workflow in Notion today

See PlansView All Connections