Discord
+
Niche King

Connect your Discord Server

Send AI-generated content, research updates, and video ideas directly to your Discord channels. Keep your team synced in real time.

How This Works

Niche King does not connect to Discord directly. This guide shows how to send content updates to Discord channels using webhooks via Zapier or Make.

For a direct AI-powered experience with all 12 tools, try Claude, Cursor, Windsurf, Cline, Continue, Zed, or Amazon Q — all connect natively via MCP.

Discord webhooks + API access are 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.

Four Ways to Use Discord + Niche King

From instant notifications to team collaboration, Discord and Niche King work seamlessly together.

Post Generated Content

Automatically send titles, scripts, descriptions, and thumbnails to a #content-creation channel for review and feedback.

Research Alerts

Get notified in #research when analysis completes with summaries of top videos, keywords, and content gaps.

Content Calendar

Share your weekly publishing schedule and upcoming videos with your team in a dedicated channel.

Team Collaboration

Invite collaborators to a private Discord channel, discuss ideas, and track content pipeline progress together.

Method 1: Zapier or Make

The easiest way to connect. Use Zapier or Make as middleware to listen for Niche King events and send to Discord.

1

Create a Discord webhook

In your Discord server, go to Channel Settings → Integrations → Webhooks → New Webhook. Name it "Niche King" and copy the URL.

2

Set up Zapier or Make

Create a new Zap or scenario:

  • Trigger: Webhook (receive Niche King events)
  • Action: Discord → Send Channel Message
  • Payload: Use the Discord webhook URL from Step 1
3

Map the payload

Create a rich embed with generated content data. Example Discord payload:

Discord embed payload
{
  "username": "Niche King",
  "avatar_url": "https://app.nicheking.video/logo.png",
  "embeds": [{
    "title": "Research Complete",
    "description": "500+ videos analyzed for your niche.",
    "color": 5793266,
    "fields": [{
      "name": "Videos Analyzed",
      "value": "500",
      "inline": true
    }, {
      "name": "Ideas Generated",
      "value": "60",
      "inline": true
    }, {
      "name": "Status",
      "value": "Ready for content creation",
      "inline": false
    }],
    "footer": {"text": "Niche King Research Pipeline"}
  }]
}

Method 2: Direct Webhook Integration

Register your Discord webhook directly with Niche King's API for real-time push notifications.

1

Get your Discord webhook URL

In your Discord server, go to Channel Settings → Integrations → Webhooks → New Webhook. Copy the webhook URL (looks like https://discord.com/api/webhooks/...).

2

Register the webhook with Niche King

Call the Niche King webhooks API to register your Discord channel:

Register Discord webhook
curl -X POST https://app.nicheking.video/api/webhooks \
  -H "Authorization: Bearer sk-nk-your-api-key" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://discord.com/api/webhooks/YOUR_WEBHOOK_ID/YOUR_WEBHOOK_TOKEN",
    "events": [
      "titles.generated",
      "script.generated",
      "description.generated",
      "research.completed",
      "video.committed"
    ]
  }'
3

Receive events in Discord

When content is generated in Niche King, a formatted message automatically posts to your Discord channel with all the details.

4

Example event payload

When a title is generated, Niche King sends this to Discord (auto-formatted as embed):

Discord event payload
{
  "content": "🎥 New Title Generated",
  "embeds": [{
    "title": "{{1.data.title}}",
    "description": "Formula: {{1.data.formula}}",
    "color": 5793266,
    "fields": [{
      "name": "Grade",
      "value": "{{1.data.grade}}",
      "inline": true
    }]
  }]
}

Webhook Event Reference

All available events you can subscribe to:

titles.generated

New title ideas created

script.generated

Long-form or short-form script generated

description.generated

YouTube description created

thumbnail.strategy

Thumbnail design strategy completed

research.completed

Research pipeline finished analyzing videos

research.step

A step in the research pipeline completed

video.committed

Video idea added to "My Videos"

schedule.updated

Publishing schedule or video assignment changed

Quick Start — Send to Discord with cURL

Here's the fastest way to post a message to Discord using your Niche King API key:

Post message to Discord
# 1. Generate content from Niche King
curl -X POST https://app.nicheking.video/api/generate \
  -H "Authorization: Bearer sk-nk-your-api-key" \
  -H "Content-Type: application/json" \
  -d '{
    "tool": "titles",
    "videoTitle": "YouTube Growth Strategies",
    "titleType": "question"
  }' | jq '.titles' > titles.json

# 2. Send to Discord
DISCORD_WEBHOOK="https://discord.com/api/webhooks/..."

curl -X POST "$DISCORD_WEBHOOK" \
  -H "Content-Type: application/json" \
  -d '{
    "embeds": [{
      "title": "New Titles Generated 🎯",
      "color": 5865266,
      "fields": [{
        "name": "Best Title",
        "value": "How to Grow Your YouTube Channel to 100K Subscribers",
        "inline": false
      }, {
        "name": "Grade",
        "value": "A+",
        "inline": true
      }, {
        "name": "Click-through Potential",
        "value": "High",
        "inline": true
      }]
    }]
  }'

FAQ

Can I send to multiple Discord channels?

Yes. Register multiple webhook URLs with different channels, and Niche King will send events to each one.

How often do webhooks fire?

Events fire instantly when content is generated, research completes, or videos move through your pipeline.

Can I filter which events go to which channels?

Yes. Register separate webhooks with different event filters (e.g., one for research events only, one for generation events).

Do I need a Discord bot?

No. Webhooks work directly without a bot. Just create a webhook in your channel settings and provide the URL.

Can I customize the Discord message format?

Yes. Use Discord embeds (rich formatting with colors, fields, footers, images). See the code examples above.

What if my webhook breaks?

Niche King retries failed webhooks 3 times over 1 hour. If delivery fails, check your Discord webhook URL and server logs.

Discord + Niche King = Instant Collaboration

Keep your entire team in the loop with real-time content updates. Starting at $97/mo.

See PlansView All Connections