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.

FOUNDERS PRICE — LOCKED FOREVER

Pro

$997$497/year

~$41/mo · billed annually · no setup fees, ever

  • Unlock your niche — AI-coached Niche Clarity profile you'll actually use
  • Build your strategy — deep niche research with 500+ videos analyzed per run
  • Know what to make — content calendar, trending topics, gap analysis
  • Make it — 12 AI tools for titles, scripts, thumbnails, descriptions & more
  • MCP + REST API — works natively in Claude, Cursor, Windsurf & Zed
  • AI Coach trained on your niche 24/7
  • API: 500 calls/day
Pay in full — $497/year

Or 3 payments of $167

Pro+

$497/mo

Annual: $4,970/yr

Everything in Pro, plus:

  • 3 live group coaching calls/week
  • Hot seat channel audits & Q&A
  • Private community
  • Ask the coaching team anything 24/7
  • Up to 5 projects (channels)
  • API: 2,000 calls/day
Join Pro+ — $497/mo

The Inner Circle

$1,497/mo

Annual: $14,970/yr

Everything in Pro+, plus:

  • We build your full strategy for you
  • Direct message access to the Niche King team
  • Monthly performance reports with coaching
  • Annual conference ticket included
  • Up to 50 projects (channels)
  • API: 5,000 calls/day
Join Inner Circle — $1,497/mo

Every plan works natively in Claude, Cursor, Windsurf, Cline, Zed & more — full REST API + MCP Server included. The most AI-native YouTube strategy platform.

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