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.

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.

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. Start for just $197/month.

See PlansView All Connections