SEO + Traffic + List-Growth Master Plan (2026-05-22)
This doc is the single source of truth for organic, paid, and indexing strategy across the portfolio. Synthesized from six parallel research streams (codebase SEO audit, paid indexing landscape, PewSearch programmatic SEO, niche organic channels, paid ads playbook, lead magnets).
The plan respects the AI Bridge Principle (knowledge/architecture/ai-bridge-principle.md) and the founder's no-send-without-blessing rule (memory/feedback_db_writes_ok_sends_need_blessing.md).
Top 5 highest-leverage moves
- PewSearch programmatic SEO fix — expose
church.aboutenriched fields on public listing pages + addlastmodto sitemap + bulk LocalBusiness/ReligiousOrganization JSON-LD on 218K detail pages. Biggest single lever in the portfolio. Detail: §4. - Free indexing infrastructure — Bing Webmaster URL Submission API (10K URLs/day) + IndexNow protocol + WebSub pings, across all properties. Detail: §3.
- Ship Sermon Illustration Finder free tool at
tools.illustratetheword.com— wraps existing RAG (22K illustrations × 2,151 themes), email-gate after 3rd query. Detail: §6. - Submit NFDA 2026 speaker proposal + drafts to Tim Challies, Pro Church Tools, The Gospel Coalition. Detail: §5 and
drafts/outreach-pitches-2026-05-22/. - Launch Google Search ads on $1,500/mo bootstrap budget, phrase + exact only, manual CPC. Skip PMax. Use Meta only for retargeting + 1% LAL fed from PewSearch's 218K-church list. Detail: §7 and
drafts/google-ads-blueprint-2026-05-22.md.
1. Property-by-property SEO baseline
| Property | Strength | Critical gap | Top-3 quick wins |
|---|---|---|---|
| churchwiseai.com | Dynamic sitemap (~747 URLs), hostname-aware robots, generateMetadata on dynamic routes, /api/og generator exists | No Organization/FAQPage/Article JSON-LD; /api/og not wired to blog posts; 17 publishable drafts in knowledge/drafts/ unused | Add JSON-LD to root + blog; wire dynamic OG to blog generateMetadata; publish 3 best drafts |
| pewsearch.com (218K) | Sitemap-index, paginated church sitemaps, hub topology (/directory, /denominations, /churches-with, /integrations, /ai-for), churchJsonLd() already exists in src/lib/json-ld.ts | church.about JSONB NOT rendered on public listing pages → 218K thin templates; no lastmod; no FAQPage schema | Expose about JSONB on listing page; add lastmod from website_scraped_at + premium_churches.updated_at; FAQPage schema seeded from about tags |
| illustratetheword.com (50K) | Best SEO infra in the portfolio — 50K-URL sitemap, scripture×topic combo pages, deep internal linking | No CreativeWork/SearchAction schema; no per-illustration OG image | Add SearchAction (sitelinks search box); add Book+Topic schema; build dynamic OG generator |
| sermonwise.ai (~350) | Hostname rewrite working, programmatic SEO grid (occasion × tradition, passage × tradition) | No Article/CreativeWork schema; sermon grid flat — no series/collection clustering; weak link-back to /ai-for lenses | Add Article schema; cluster sermons into /series/[topic] hubs; cross-link to lenses |
| sharewiseai.com | Hostname rewrite in place, deliberately de-indexed (Coming Soon) | OAuth-review-blocked (FA-109) — SEO work premature | Defer until launch; then SoftwareApplication schema + canonical to sharewiseai.com |
Cross-property gaps: no GSC verification tags spotted in root layouts; no GA4 (PostHog only); Meta Pixel only on churchwiseai-web (not PewSearch/ITW); no dynamic OG generators on PewSearch/ITW/SermonWise.
2. Indexing: SAFE / RISKY / AVOID
SAFE & RECOMMENDED
| Technique | Cost | Action |
|---|---|---|
| Bing Webmaster URL Submission API | Free, 10,000 URLs/day | Verify all 5 properties in Bing Webmaster, write a daily cron pushing newest URLs. Bing feeds ChatGPT/Copilot index. |
| IndexNow protocol | Free | Drop <key>.txt at site root, ping https://api.indexnow.org/IndexNow on publish. Bing+Yandex+Naver+Seznam+Yep coverage. Google has NOT adopted (still "experimenting" 5 years on) but free is free. |
| WebSub / PubSubHubbub | Free | Generate RSS feed of updated URLs, ping pubsubhubbub.appspot.com. Still active. |
Sitemap segmentation + accurate lastmod | Free | Mueller 2024: lastmod is the #1 input to Google recrawl scheduling — but only if verifiable. Tie to real content-change timestamps; do not fake. |
| Internal linking from hub pages | Engineering time | How Yelp/Glassdoor/Healthgrades got 80–90% indexed in 12–18 months. Surface deep URLs from already-crawled hubs. |
| External authority links | Engineering + outreach | One Christianity Today / Tim Challies / Carey Nieuwhof inbound link outweighs 100 directory submissions. See §5. |
RISKY (small pilots only)
- Paid indexing services (Rapid URL Indexer $0.04/URL, IndexMeNow $0.49/URL, Tagparrot, Indexify) — most either ignored by Google or use opaque "crawl-bait link farm" tactics. Alexander Chukovski's 2024–25 analysis ("Indexing Tools Are a Scam") found they don't beat baseline on legitimate content. Try a $20, 500-URL pilot on Premium listings only before scaling. For thin content, no submission method helps — fix content depth instead.
AVOID
- Putting fake
JobPostingschema on church/directory pages to abuse the Indexing API. Confirmed Google manual-action trigger (John Mueller, May 2025). Some paid indexers do this server-side without disclosing — ask explicitly. - Multiple Indexing API service accounts to bypass the 200/day quota. Account ban + potential domain penalty.
- Buying directory backlinks from "Christian SEO directories" — almost all link farms in 2026.
The 10/day "Request Indexing" cap
GSC "Request Indexing" is roughly 10/day GLOBAL per Google account (memory/reference_gsc_quota_is_global.md). Don't try to beat it via multiple accounts — fix internal linking + sitemap freshness signals instead.
3. Indexing implementation plan (Bing API + IndexNow + WebSub)
Shipped as edit-only PR by orchestrator dispatch on 2026-05-22. Lives in churchwiseai-web as the central cron host (the other repos can import the helper or call the cron endpoint).
Step 1 — IndexNow key publishing (10 min per property)
Generate a 32-char hex key per property. Drop at /public/<key>.txt containing just the key. Add to env as INDEXNOW_KEY_<PROPERTY>.
Step 2 — IndexNow pinger (churchwiseai-web/src/lib/indexnow.ts)
export async function pingIndexNow(host: string, urls: string[]) {
const key = process.env[`INDEXNOW_KEY_${host.replace(/\./g, '_').toUpperCase()}`];
if (!key) return;
await fetch('https://api.indexnow.org/IndexNow', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ host, key, urlList: urls }),
});
}
Call from any content-publish handler (new church claim, new sermon template, new illustration approval).
Step 3 — Bing URL Submission daily cron (churchwiseai-web/src/app/api/cron/bing-submit/route.ts)
// Vercel cron, daily 02:00 UTC
// Query newest-updated URLs across all 5 properties (max 10K total)
// POST to https://ssl.bing.com/webmaster/api.svc/json/SubmitUrlBatch?apikey=...
Bing API key from Webmaster Tools settings; store as BING_WEBMASTER_API_KEY per property.
Step 4 — WebSub feed + ping (/feeds/updates.xml + ping on publish)
Generate per-property <property>/feeds/updates.xml listing 100 newest changed URLs. POST hub.mode=publish&hub.url=<feed> to https://pubsubhubbub.appspot.com.
Step 5 — Sitemap lastmod fix on PewSearch (highest priority)
pewsearch/web/src/app/sitemaps/churches/route.ts — add lastmod per URL based on GREATEST(churches.updated_at, churches.website_scraped_at, premium_churches.updated_at).
Verification: 7-day check in GSC Coverage report — indexed-page count should tick up; submit one diagnostic URL via GSC URL Inspection to confirm Google picked up the new lastmod.
4. PewSearch programmatic SEO (highest-leverage engineering work)
The 218K-page directory is under-indexed because pages look templated to Google. Five fixes, in order:
Fix 1 — Render church.about JSONB on public listing page
File: pewsearch/web/src/app/churches/[slug]/page.tsx (StandardChurchPage component, around lines 490–905).
Change: Today, church.about (JSONB containing amenities, beliefs, programs tags scraped from the church's website) is rendered only on premium pages. Render a sanitized subset on all listing pages. Adds 50+ words of unique variation per church at zero content cost.
{church.about && Object.keys(church.about).length > 0 && (
<section aria-labelledby="church-details">
<h2 id="church-details">About {church.name}</h2>
<ChurchAboutTags about={church.about} />
</section>
)}
Fix 2 — lastmod in sitemap
Files: pewsearch/web/src/app/sitemap.ts + pewsearch/web/src/app/sitemaps/churches/route.ts.
Change: Add lastmod: GREATEST(churches.updated_at, churches.website_scraped_at, premium_churches.updated_at) to every URL. Hub pages get lastmod = max(child church updated_at).
Fix 3 — Bulk LocalBusiness/ReligiousOrganization schema on listing pages
File: pewsearch/web/src/lib/json-ld.ts:31 (churchJsonLd already exists with @type: "Church").
Change: Confirm @type is one of ["Church", "LocalBusiness"] array form (Google accepts multi-typed entities). Add priceRange, serviceType, openingHoursSpecification (from service_times if populated), and aggregateRating (already conditional). Bulk via existing generateMetadata — no per-church manual work.
Fix 4 — Premium-only sitemap for the ~30K claimed listings
New file: pewsearch/web/src/app/sitemaps/churches-premium/route.ts.
Logic: filter to premium_churches rows with non-null content fields. Ping aggressively via IndexNow + Bing. Let the 188K thin listings index organically as inbound links accumulate.
Fix 5 — State+denomination grid (~200 new hub pages)
New route: pewsearch/web/src/app/denominations/[slug]/[state]/page.tsx.
Content: top-N cities for that denomination+state, church grid, denomination FAQ excerpt, geo-clustered internal links.
Critical-path note: PewSearch's /churches/[slug] is gated under critical-path-definition rules — any change must ship with Playwright spec evidence per CLAUDE.md rule #10. Use Option B (PR with CI gate) not Option A direct-push.
5. Organic distribution channels — pastor + funeral-director audiences
Tier 1 — Do this week (drafts in drafts/outreach-pitches-2026-05-22/)
| Channel | Audience | Founder action | Expected outcome |
|---|---|---|---|
| Tim Challies sponsored week | Reformed-leaning pastors (~30K daily-list subscribers) | Email media@challies.com — pitch in drafts/outreach-pitches-2026-05-22/tim-challies-sponsorship.md | $700–1,500/wk; ~3K clicks at top-of-funnel; perfect theological match |
| Pro Church Tools podcast (Brady Shearer) | Tech-curious pastors | Pitch via prochurchtools.com/contact — draft in pro-church-tools-podcast.md | Pastor-engineer angle is rare; books fast |
| NFDA 2026 Convention (Charlotte, Oct 25-28) | Funeral home decision-makers | Submit speaker proposal via convention.nfda.org/cfp — draft in nfda-2026-speaker-proposal.md | Innovation/technology track published; single highest-leverage move for FuneralWiseAI |
| The Gospel Coalition op-ed | Reformed clergy + thoughtful laypeople | Pitch editor — draft in tgc-op-ed.md ("AI as Bridge, Not Replacement") | Free; high prestige; perfect AI Bridge Principle showcase |
Tier 2 — This month
- r/pastors (private, ~20K vetted) — apply; lurk 2 weeks; post HEAR-protocol essay (no link in body, bio only)
- Church Communications (Katie Allred FB group, 30K+) — join, contribute 5 helpful comments, then post founder-story
- PCA Pastors FB group — join (Reformed lean), engage organically
- unSeminary podcast (Rich Birch) — email Rich directly; books within 4 weeks
- Kates-Boylston FSI media kit request — #1 funeral newsletter, 10K+ monthly opens
Tier 3 — When budget exists (>$3K/mo organic spend)
- ChurchLeaders.com newsletter dedicated send (~$2.5–4K, 180K pastors, expect 0.05–0.15% trial conversion)
- MinistryTech feature pitch (free op-ed first; paid sponsorship later)
- Funeral Director Daily newsletter sponsorship
Defer indefinitely
- Catalyst / Outreach / Exponential conference booths (booth-economy economics don't work at solo-founder scale)
- Christianity Today display advertising
- Christian SEO directory backlinks
6. Lead magnets + free tools (ranked by ROI)
Free tools (ship in a weekend, ranked)
| Tool | Build effort | Subscriber capture | Trial conversion |
|---|---|---|---|
Sermon Illustration Finder at tools.illustratetheword.com | 1 day, wraps existing RAG search | Very high (pastors bookmark) | Highest for SermonWise + ITW Premium |
Obituary Generator at tools.funeralwiseai.com | 1 day (RAG already has obit phrases) | Highest (funeral directors share with families) | Highest for FuneralWiseAI |
| Eulogy Outline Generator | 1 day | High (both audiences) | High for FuneralWise + SermonWise |
| AI Readiness Quiz for Churches | 0.5 day | Medium (novelty) | Medium → CWA Chat/Voice trial |
| Bible Reading Plan Generator | 0.5 day | Medium-high | Low (no upsell) |
Recommendation: Ship Sermon Illustration Finder FIRST. Reuses what's already built, smallest risk, biggest clergy audience. Obituary Generator SECOND — zero competitors offering this with a free tool.
PDF lead magnets (top 3)
- "100 Sermon Illustrations You've Never Used" — 10 themed packs (Easter, Funerals, Stewardship, Advent, Fathers Day, Mental Health, etc.) generated from
unified_rag_content(22K illustrations × 2,151 themes). Deploy as inline content upgrades on ITW blog posts AND PewSearch listing pages ("Pastor — claim this listing + get the free pack"). - "Funeral Service Builder + 25 Bible Readings" — printable template + Scripture pack. Doubles as a SermonWise + FuneralWiseAI upsell.
- "After-Hours Call Triage Cheat Sheet" — funeral directors; 1-page PDF with scripted condolence language + intake template.
Placement on existing sites
- Inline content upgrades on blog posts — highest converter (8–15%)
- PewSearch listing pages = 218K untapped lead-capture surfaces — "Pastor / staff — claim this listing + get [magnet]" form on each listing
- Exit-intent popups — 2–4% B2B with specific countdown/no-gimmicks
- Chatbot itself — after 2nd helpful answer, "Want this in your inbox weekly?"
- Post-checkout thank-you page — bundle the magnet as bonus for existing customers
Email sequences (5–7 emails warming cold → trial)
Pastor path (downloaded "100 Illustrations"):
- Day 0 — Deliver PDF + "tell me your hardest preaching week"
- Day 2 — Story: "How one pastor saved 5 hrs/week" (light demo)
- Day 4 — Free Illustration Finder tool link
- Day 7 — Founder note: pastor-engineer story, AI-as-bridge frame
- Day 10 — SermonWise 14-day trial offer
- Day 14 — Last-chance + testimonial
- Day 21 — Lectionary tip + soft re-offer
Funeral director path (downloaded "Call Triage Cheat Sheet"):
- Day 0 — Deliver + ask "what's your biggest after-hours stressor?"
- Day 2 — Audio clip of voice agent handling 2am call
- Day 4 — ROI math: missed calls × avg arrangement value
- Day 7 — Live demo invite (Cal.com link)
- Day 10 — FuneralWiseAI $745 + $199/mo offer
- Day 14 — Case study or last-chance
Stack
Stay on MailerLite until 5K subscribers — its forms + landing-page builder cover everything. Switch only if reaching 5K+ AND wanting product transactional + marketing in one tool (Loops.so at $99/mo is the clean SaaS choice). Skip ConvertKit, Beehiiv (unless launching a true public newsletter).
Quantitative benchmarks
| Metric | Realistic | Stretch |
|---|---|---|
| Cold landing-page email capture (clergy) | 3–5% | 8–12% |
| Inline content-upgrade capture | 8–15% | 20%+ |
| Free-tool → email | 30–50% | 60% |
| Email subscriber → trial | 2–5% | 8–10% |
| Trial → paid (SMB $20–50/mo) | 18–25% | 30%+ |
Planning math: 10K monthly visits × 4% capture = 400 subs/mo × 4% trial = 16 trials × 25% paid = 4 paid customers/mo from cold traffic at $80–200 MRR. A good free tool layered on top can 3–5× this.
7. Paid ads — 90-day playbook
Source-of-truth blueprint with campaign structure, keywords, day-1 negatives, CPC estimates: drafts/google-ads-blueprint-2026-05-22.md.
TL;DR
- $1,500/mo bootstrap: $1,100 Google Search (phrase + exact only, manual CPC) + $400 Meta retargeting + LAL from PewSearch list. Skip PMax, LinkedIn, niche.
- $3,000/mo validated (after ~5 customers): add LinkedIn Funeral Director ABM ($800), Pro Church Tools test ($200).
- $5,000/mo scaling: add ChurchLeaders newsletter rotation, brand defense, Meta video creative.
Honest verdicts
- PMax under $8K/mo = waste. Burns budget on Display/YouTube garbage placements. Wait until Smart Bidding has ≥30 conversions to feed.
- Religion is a Special Ad Category on Meta — kills detailed interest targeting, lookalike <1%, age precision. Workaround: Customer Match audience from the PewSearch 218K list + 1% LAL. This is the unfair advantage no competitor has.
- LinkedIn for pastors = marginal ($8–14 CPC; pastors under-index on LinkedIn). For funeral directors = excellent ($11–18 CPC justified at $5.5K LTV).
- Christianity Today / Outreach Magazine display — skip until $10K/mo budget.
CAC ceilings (3:1 LTV/CAC)
- Church $50–60/mo × 18mo retention = LTV ~$1,080 → CAC ≤ $360
- Funeral $199/mo + $745 × 24mo = LTV ~$5,500 → CAC ≤ $1,200
Measurement stack
Pixel + CAPI (wired) + GA4 + UTM discipline + a Supabase view joining signups ↔ ad spend by UTM source/campaign by week. Skip Triple Whale ($150+/mo, e-com focused). Add Plausible/Fathom ($14/mo) as cookieless backstop.
8. What we are explicitly NOT doing
- Paid indexing services beyond a $20 pilot. Most are scams or penalty triggers.
- PMax under $8K/mo.
- Meta cold-prospecting at scale — SAC eats it; use Customer Match LAL only.
- Christian SEO directory link farms.
- Per-church custom content writing for 218K listings — use JSONB enrichment we already have.
- Booth-economy conferences (Catalyst, Exponential, Outreach) before $10K/mo organic revenue.
- Pitching Christianity Today paid placements before we have a case study + organic case for it.
- Anonymous rank-and-rent local-business fronts — see
memory/feedback_leadgen_ethics_line.md. Off the table.
9. Verification + freshness
- This doc is reviewed quarterly. Next review: 2026-08-22.
- Indexing infrastructure (Bing API + IndexNow + WebSub) verified working when GSC and Bing Webmaster show URL counts ticking upward 7+ days after deployment.
- PewSearch programmatic SEO fixes verified via Playwright spec on
pewsearch/webcritical-path test suite + 14-day post-deploy GSC Coverage delta. - Paid ad ROI verified weekly via the Supabase UTM dashboard (built as part of §7 stack).
10. Open questions for the founder
- Bing Webmaster API keys — need founder to verify the 5 properties at bing.com/webmasters and hand back API keys. Founder action.
- GSC verification tags — none currently spotted in root layouts; founder should confirm GSC properties are verified via DNS TXT or HTML meta. Founder action.
- Tier-3 sponsorships budget — Tim Challies sponsorship (~$1K/wk) is in tier 1 of the outreach plan; needs founder budget approval before sending the pitch.
- Subdomain DNS —
tools.illustratetheword.comandtools.funeralwiseai.comneed DNS + Vercel project setup for free-tool launches. Founder action.
11. Press releases + earned media
Added 2026-05-23 after founder asked whether press-release distribution was a viable backlink/indexing strategy. Short answer: the 2010-era "PR-for-backlinks" pitch is dead, but earned media via direct outreach + journalist-source platforms is real.
Why the paid-wire model is dead in 2026
Google has treated press-release links as either nofollow or low-value syndicated content since 2013 (Matt Cutts at the time, John Mueller restated through 2024). Paid distribution to PR Newswire ($800–1,200/release), Business Wire ($700–1,500), GlobeNewswire ($800), or Cision ($1,500–3K+) syndicates your copy across 200+ low-DA sites, none of which pass meaningful PageRank. The wire model is not a viable backlink strategy at our scale.
Free wire services (PRLog, OpenPR, EIN Presswire free tier, EZ Newswire) are content farms with backlinks that Google ignores or actively flags as low-quality. Zero ROI. Skip entirely.
What still works
A. Journalist-source platforms (HARO replacements) — highest ROI
HARO shut down July 2024. The 2026 replacements:
| Platform | Cost (source) | Sweet spot | Notes |
|---|---|---|---|
| Featured.com | Free | Broad business + tech + lifestyle | Highest reply-rate platform for sources in 2026. Best for a pastor-engineer founder. |
| Qwoted | Free | Business press + B2B SaaS | Stronger journalist quality but smaller volume than Featured. |
| Help A B2B Writer | Free | B2B SaaS, marketing, sales | Niche; lower volume but higher conversion-to-quote rate. |
| Connectively (Cision) | Free | HARO successor; winding down per industry reports | Functional but declining. Sign up but don't rely on it. |
| Press Hunt | Free / $99/mo | Tech founders | Newer; mixed quality but cheap. |
Mechanics: journalists post requests for expert sources daily. You respond within their deadline (usually 24-72 hours). If they use your quote, you get a real backlink from a real publication (DA 60+ in most cases). One quote in a major outlet outperforms 100 wire releases for SEO + credibility.
For this founder specifically: the pastor-engineer combo is distinctive enough to land quotes on AI ethics, church technology, AI in grief/death-care, mandatory reporting + clergy-penitent law, and AI safety. Source profile + sample responses live at drafts/featured-qwoted-source-profile-2026-05-23.md.
B. Direct pitches to industry trade publications — second-highest ROI
Already in §5 of this doc but worth re-emphasizing in the earned-media frame. These outlets publish vendor news editorially when there's a real angle:
Funeral industry:
- Connecting Directors (
connectingdirectors.com) — accepts vendor announcement submissions; editorial team reviews and decides. Template atdrafts/connecting-directors-launch-template-2026-05-23.md. - Funeral Director Daily (Tom Anderson) — newsletter + podcast; reads pitches personally.
- Kates-Boylston Funeral Service Insider — paid sponsorship plus occasional editorial features.
Church industry:
- ChurchTechToday — product directory listing + occasional vendor features.
- MinistryTech — free product features for tech-curious editorial slant.
- Outreach Magazine "Industry News" — short-form industry briefs.
- Pro Church Tools — Brady Shearer's site; covered in §5 outreach pitches.
C. Tying real moments to targeted releases — third-highest ROI
When there is actual news, a single targeted release to 5–10 industry contacts (built relationships, not blast wires) is worthwhile. Real news triggers we should plan around:
- FuneralWiseAI public launch — when the first 3 paying customers + the demo line are stable
- NFDA 2026 speaker acceptance (Charlotte, Oct) — if the proposal lands
- First 25 paying customers across the portfolio — milestone for the CWA + funeral combined story
- A media mention by Tim Challies, TGC, or Modern Reformation — secondary coverage compounds
- Any first-of-its-kind product feature — e.g. when the AI Bridge Principle is referenced in a real legal/compliance review
For these moments only: ONE paid wire release to a vertical-specific category (PR Newswire "Religion" or "Funeral Services") at ~$800 IS worth considering — because vertical trade press picks up wire releases more reliably than general SEO does. General SEO via wire = dead. Vertical trade-press pickup via wire = marginal but real.
Recommended 90-day press-release plan
In priority order (free → cheap → paid):
- Week 1: Sign up for Featured.com and Qwoted as a source. Build the bio + sample pitch responses from
drafts/featured-qwoted-source-profile-2026-05-23.md. Allocate 15 min/day to scanning queries. - Week 2-4: Pitch the Connecting Directors + Funeral Director Daily + ChurchTechToday editorial teams using the templates. Free. Real review process.
- Week 4+: Skip the broadcast wire entirely unless we have a real news trigger from the list above.
- Trigger event (NFDA acceptance, public launch, etc.): single $800 vertical-targeted wire release timed to coincide with the trigger.
Quantitative benchmarks (honest)
- Featured.com / Qwoted reply-rate: 5–15% of queries answered → quoted, with 30+ days of consistent effort
- Expected backlink count: 2–4 real publication backlinks/quarter from journalist-source platforms
- Industry trade pickup rate from direct pitches: 30–50% if the angle is genuinely newsworthy
- Wire-release pickup rate (vertical category): 5–20 syndicated mentions per release, mostly low-DA syndication
What NOT to do
- Don't buy general-distribution wire packages (PR Newswire / Business Wire) for SEO purposes.
- Don't submit to free wire farms (PRLog, OpenPR, EZ Newswire, etc.) — actively harmful.
- Don't pay $99-499/mo to companies promising "guaranteed PR placements" — these are aggregators of free wire farms.
- Don't waste journalist-platform queries by responding to questions outside your genuine expertise. Quality > quantity.