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.
No separate API pricing. Subscribe to any plan, generate your API key, and connect instantly.
AI YouTube Strategist
Annual: $1,970/yr — save $394
Group Coaching
Annual: $4,970/yr — save $994
Everything in Strategist, plus:
The Inner Circle
Annual: $14,970/yr — save $2,994
Everything in Group Coaching, plus:
All plans include full MCP Server + REST API access. Up to 5 API keys per account. Cancel anytime.
From instant notifications to team collaboration, Discord and Niche King work seamlessly together.
Automatically send titles, scripts, descriptions, and thumbnails to a #content-creation channel for review and feedback.
Get notified in #research when analysis completes with summaries of top videos, keywords, and content gaps.
Share your weekly publishing schedule and upcoming videos with your team in a dedicated channel.
Invite collaborators to a private Discord channel, discuss ideas, and track content pipeline progress together.
The easiest way to connect. Use Zapier or Make as middleware to listen for Niche King events and send to Discord.
In your Discord server, go to Channel Settings → Integrations → Webhooks → New Webhook. Name it "Niche King" and copy the URL.
Create a new Zap or scenario:
Create a rich embed with generated content data. Example Discord 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"}
}]
}Register your Discord webhook directly with Niche King's API for real-time push notifications.
In your Discord server, go to Channel Settings → Integrations → Webhooks → New Webhook. Copy the webhook URL (looks like https://discord.com/api/webhooks/...).
Call the Niche King webhooks API to register your Discord channel:
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"
]
}'When content is generated in Niche King, a formatted message automatically posts to your Discord channel with all the details.
When a title is generated, Niche King sends this to Discord (auto-formatted as embed):
{
"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
}]
}]
}All available events you can subscribe to:
titles.generatedNew title ideas created
script.generatedLong-form or short-form script generated
description.generatedYouTube description created
thumbnail.strategyThumbnail design strategy completed
research.completedResearch pipeline finished analyzing videos
research.stepA step in the research pipeline completed
video.committedVideo idea added to "My Videos"
schedule.updatedPublishing schedule or video assignment changed
Here's the fastest way to post a message to Discord using your Niche King API key:
# 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
}]
}]
}'Yes. Register multiple webhook URLs with different channels, and Niche King will send events to each one.
Events fire instantly when content is generated, research completes, or videos move through your pipeline.
Yes. Register separate webhooks with different event filters (e.g., one for research events only, one for generation events).
No. Webhooks work directly without a bot. Just create a webhook in your channel settings and provide the URL.
Yes. Use Discord embeds (rich formatting with colors, fields, footers, images). See the code examples above.
Niche King retries failed webhooks 3 times over 1 hour. If delivery fails, check your Discord webhook URL and server logs.
Keep your entire team in the loop with real-time content updates. Start for just $197/month.