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.

Where are you in your journey?

Pick the depth you need.

Same foundation, three depths. Read down the column that sounds like you. The tier you need will become obvious.

N

Niche King Mastermind

You are

You're ready for the Mastermind. You have a niche, you've shipped some videos, and you want real eyes on your channel every week, a peer cohort that holds the standard, and an annual event where the Mastermind meets in person.

Solo execution has a ceiling. You need cadence, hot seat audits that catch the leak, a coach you can ask the hard questions, and a cohort of serious creators pushing you harder than you push yourself.

What you get

Three live coaching calls every week with Jeremy and the team. Weekly hot seat channel audits. A peer cohort of serious creators. Annual in-person event in Dallas. 12 niche-specific AI tools, Editing Brain, MCP integration into Claude / Cursor / Windsurf / ChatGPT, AI Context File yours forever. The whole stack.

$9,997 / year
$5,997 / year
Founders Price · Save $4,000 (40% off) · locked forever · Dallas event included

Niche King is a strategy and AI content tools platform. We do not film, edit, or upload videos on your behalf.

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