Zapier
+
Niche King

Automate Your YouTube Content Workflow with Zapier

Connect Niche King to 6,000+ apps. Trigger Zaps when content is generated, research completes, or videos move through your pipeline. Save hours every week on repetitive tasks.

Zapier + API access is 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.

What You Can Automate

Notion Content Calendar

New video idea → auto-create a Notion page with title, script prompt, and due date.

Slack Notifications

Research completes → Slack message with top video ideas and niche score.

Google Sheets Tracker

Content generated → auto-log titles, scripts, and descriptions to a spreadsheet.

Email Drip Campaigns

Niche approved → trigger a welcome sequence with content strategy tips.

Trello/Asana Pipeline

Video status changes → move cards through your production board automatically.

Calendar Blocking

Schedule updated → create filming/editing blocks on Google Calendar.

Setup Guide — Triggers (Webhooks)

Use Niche King webhooks as Zapier triggers. When something happens in Niche King, your Zap fires automatically.

1

Create a Zap with Webhooks by Zapier

In Zapier, create a new Zap. For the trigger, search for "Webhooks by Zapier" and select "Catch Hook". Copy the webhook URL Zapier generates for you.

2

Register the webhook with Niche King

Use your API key to register the Zapier URL as a webhook endpoint:

Register webhook
curl -X POST https://app.nicheking.video/api/v1/webhooks \
  -H "Authorization: Bearer sk-nk-your-key" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://hooks.zapier.com/hooks/catch/YOUR_HOOK_ID",
    "events": ["content.generated", "research.completed", "video.committed"]
  }'

Save the secret from the response — you can use it to verify webhook signatures in Zapier's code step.

3

Test & map your data

Go back to Zapier and click "Test trigger". Then generate something in Niche King (e.g. create a title). Zapier will capture the webhook payload. Map the fields to your action step.

Available Trigger Events

New Content Generatedcontent.generated
Fires when titles, scripts, thumbnails, or descriptions are created
Research Completedresearch.completed
Fires when the 13-step research pipeline finishes
Video Added to My Videosvideo.committed
Fires when an idea is moved to the active pipeline
Video Status Changedvideo.status_changed
Fires when a video moves through planned → scripted → filmed → edited → published
Niche Approvedniche.approved
Fires when a creator locks in their niche profile
Schedule Updatedschedule.updated
Fires when weekly schedule slots are created or modified

Setup Guide — Actions (API Calls)

Use Niche King as a Zapier action. When a trigger fires (from any app), call the Niche King API to generate content.

1

Add "API Request" as your action

In your Zap, add an action step. Search for "Webhooks by Zapier" and select "Custom Request".

2

Configure the API call

Set the method, URL, and headers. Here's an example that generates titles:

Method: POST
URL: https://app.nicheking.video/api/v1/generate/titles
Headers:
Headers
Authorization: Bearer sk-nk-your-key
Content-Type: application/json
Body (JSON)
{
  "title": "{{trigger_data_title}}",
  "type": "how-to",
  "count": 10
}

Replace {{trigger_data_title}} with mapped data from your trigger step.

3

Use the generated content

The API returns structured JSON with your generated content. Map the output fields to your next action — save to Notion, send via email, post to Slack, etc.

Popular Actions

POSTGenerate Titles
Create 10 AI-powered title ideas for any video topic
POSTGenerate Script
Write an 8-15 minute YouTube script with B-roll markers
POSTGenerate Description
SEO-optimized description with AI Discovery FAQ
POSTGenerate Hooks
3 scroll-stopping opening hooks for any video
GETGet Niche Profile
Pull the creator's full niche research data
GETGet My Videos
List all committed videos in the pipeline

See all 31 endpoints in the full API reference.

Ready-Made Zap Recipes

ZAP RECIPE

When: Google Calendar event starts

Then: Generate titles + script for scheduled video topic

CalendarNiche King (Generate Titles)Niche King (Generate Script)Notion (Create Page)
ZAP RECIPE

When: New row in Google Sheets

Then: Generate full content package for each video idea

SheetsNiche King (Generate Titles)Niche King (Generate Description)Sheets (Update Row)
ZAP RECIPE

When: Niche King research completes

Then: Notify team and create project tasks

Niche King WebhookSlack (Post Message)Asana (Create Tasks from Video Ideas)
ZAP RECIPE

When: New Slack message in #content-ideas

Then: Auto-generate title ideas for the topic

SlackNiche King (Generate Titles)Slack (Reply with Titles)

Webhook Payload Example

Here's what Zapier receives when content is generated:

Webhook payload — content.generated
{
  "event": "content.generated",
  "timestamp": "2026-04-05T14:30:00.000Z",
  "projectId": "abc123-...",
  "data": {
    "tool": "titles",
    "toolRunId": "run_xyz789",
    "title": "How to Grow on YouTube in 2026",
    "output": {
      "titles": [
        "10 YouTube Growth Hacks Nobody Talks About",
        "I Tried Every YouTube Strategy — Here's What Actually Works",
        "..."
      ]
    }
  }
}

Webhook signatures use HMAC-SHA256. The signature is in the X-Niche-King-Signature header. Verify it in a Zapier Code step for production security.

Ready to automate your workflow?

Every Niche King plan includes full Zapier + REST API + webhook access. Start automating content in minutes.

See Plans & PricingGet Started