Citedy
Prompt Library for Agent Teams

12 Ready-to-Run Use Casesfor Citedy Agents

Copy prompt. Run API snippet. Ship result. These workflows are built from real product capabilities and mapped to credit ranges.

Snippets are templates. Check full request schema in
/agents.md
.

4 categories · 12 workflows

Publish Fast

From idea to published article in minutes.

2-4 ($0.02-$0.04)

Turbo Article (5-minute publish)

Indie founders, solo builders, high-volume teams

Prompt

Write a turbo article on 'AI agent trends 2026' and publish it to my blog.

API Snippet

curl -X POST https://www.citedy.com/api/agent/autopilot \
  -H "Authorization: Bearer citedy_agent_..." \
  -H "Content-Type: application/json" \
  -d '{"topic":"AI agent trends 2026","mode":"turbo","enable_search":true}'

Result: ~800-word SEO article published in ~60-90 seconds.

Perfect for daily output and low-cost topic validation.

20-40+ ($0.20-$0.40+)

Deep Research Article (pillar content)

SaaS teams and agencies building topical authority

Prompt

Write a 3000+ word pillar article on MCP adoption for enterprise with sources and competitor context.

API Snippet

curl -X POST https://www.citedy.com/api/agent/autopilot \
  -H "Authorization: Bearer citedy_agent_..." \
  -H "Content-Type: application/json" \
  -d '{"topic":"MCP protocol adoption for enterprise","size":"pillar","enable_search":true,"enable_voice":true}'

Result: Long-form article + visuals + voice-over ready for publication.

Useful for cornerstone pages where depth matters.

Research & Intent

Trend, competitor, and buyer-signal workflows.

2-8

News/Trend Scan -> Content Brief

Teams that react quickly to market conversations

Prompt

What's trending on X about AI developer tools right now? Rank top 5 opportunities.

API Snippet

curl -X POST https://www.citedy.com/api/agent/scout/x \
  -H "Authorization: Bearer citedy_agent_..." \
  -H "Content-Type: application/json" \
  -d '{"query":"AI developer tools","mode":"ultra+"}'

Result: Ranked trend list with engagement and sample posts.

Turns social signals into concrete article targets.

About 65-130 ($0.65-$1.30)

Competitor Monitoring -> Response Articles

Agencies and SaaS teams in competitive niches

Prompt

Analyze jasper.ai, find our content gaps, and create 3 article targets to counter them.

API Snippet

# 1) competitor scout
curl -X POST https://www.citedy.com/api/agent/competitors/scout \
  -H "Authorization: Bearer citedy_agent_..." \
  -d '{"domain":"jasper.ai","depth":"deep"}'

# 2) generate gaps
curl -X POST https://www.citedy.com/api/agent/gaps/generate \
  -H "Authorization: Bearer citedy_agent_..." \
  -d '{"competitor_domain":"jasper.ai"}'

Result: Competitor brief + gap list + production-ready article angles.

Fastest path from competitor signal to execution.

About 75-110 ($0.75-$1.10)

X Intent Scout -> Intent-Matched Article

B2B teams tracking live buyer pain points

Prompt

Find people on X asking for Jasper alternatives, then write a post that matches that exact intent.

API Snippet

# 1) intent scout
curl -X POST https://www.citedy.com/api/agent/scout/x \
  -H "Authorization: Bearer citedy_agent_..." \
  -H "Content-Type: application/json" \
  -d '{"query":"alternative to Jasper AI","mode":"intent","min_engagement":10}'

# 2) article generation
curl -X POST https://www.citedy.com/api/agent/autopilot \
  -H "Authorization: Bearer citedy_agent_..." \
  -d '{"topic":"Best Jasper AI alternatives 2026","size":"standard"}'

Result: Article aligned with real user questions from current feed.

You target intent, not assumptions from keyword-only tools.

Distribution & GEO Loop

Adapt, publish, schedule, and measure visibility.

0-2 per adaptation; publish is 0

Social Adaptation + Auto-Publish

Content teams that need omnichannel distribution

Prompt

Take my latest article, adapt it for LinkedIn + X + Reddit, and publish now.

API Snippet

curl -X POST https://www.citedy.com/api/agent/adapt \
  -H "Authorization: Bearer citedy_agent_..." \
  -H "Content-Type: application/json" \
  -d '{"article_id":"art_abc123","platforms":["linkedin","x_thread","reddit"],"include_ref_link":true}'

Result: Platform-native posts ready and published in one run.

Distribution stops being a separate workflow.

About 68-90 ($0.68-$0.90)

GEO Visibility Loop (scan -> fix -> recheck)

Teams investing in AI-search discoverability

Prompt

Check AI visibility for 'best SEO tools', generate a gap-closing article, publish, and recheck.

API Snippet

# 1) scan
curl -X POST https://www.citedy.com/api/agent/scan \
  -H "Authorization: Bearer citedy_agent_..." \
  -d '{"mode":"ultra+","query":"best SEO tools"}'

# 2) gap content
curl -X POST https://www.citedy.com/api/agent/gaps/generate \
  -H "Authorization: Bearer citedy_agent_..." \
  -d '{"competitor_domain":"jasper.ai","gap_topic":"agent-native SEO"}'

# 3) publish
curl -X POST https://www.citedy.com/api/agent/publish \
  -H "Authorization: Bearer citedy_agent_..." \
  -d '{"article_id":"...","platforms":["all"]}'

Result: Measurable GEO cycle in one operational flow.

Few tools support full loop execution, not only reporting.

About 50 /day (~$0.50/day) for 2 articles + social

Bulk Content Session (set and forget)

Agencies and teams running recurring schedules

Prompt

Set an autopilot session for 2 articles/day on developer tools and distribute to LinkedIn + X.

API Snippet

# 1) create session
curl -X POST https://www.citedy.com/api/agent/session \
  -H "Authorization: Bearer citedy_agent_..." \
  -H "Content-Type: application/json" \
  -d '{"categories":["developer tools","AI productivity"],"interval_minutes":720,"auto_publish":true,"platforms":["linkedin","x_thread"]}'

# 2) monitor output
curl -X GET "https://www.citedy.com/api/agent/articles?limit=10" \
  -H "Authorization: Bearer citedy_agent_..."

Result: Continuous generation pipeline with no manual calendar work.

Best fit for long-running autonomous campaigns.

Assets & Repurposing

Video, ingestion, lead magnets, and product-aware content.

About 185-193 ($1.85-$1.93) for 15s

Video Shorts Pipeline

Teams scaling short-form product storytelling

Prompt

Create a 15-second promo short with avatar, subtitles, and publish to YouTube Shorts.

API Snippet

# 1) script
curl -X POST https://www.citedy.com/api/agent/shorts/script \
  -H "Authorization: Bearer citedy_agent_..." \
  -d '{"topic":"Our AI feature saves 2 hours/day","duration":15}'

# 2) render short
curl -X POST https://www.citedy.com/api/agent/shorts \
  -H "Authorization: Bearer citedy_agent_..." \
  -d '{"prompt":"...", "avatar_url":"https://download.citedy.com/...","duration":15}'

# 3) publish
curl -X POST https://www.citedy.com/api/agent/publish \
  -H "Authorization: Bearer citedy_agent_..." \
  -d '{"article_id":"...","platforms":["youtube","instagram"]}'

Result: Rendered short + subtitles + distribution pipeline.

One API flow instead of multiple video tools.

Ingestion 5-55 + article

YouTube -> Article Repurposing

Creators converting video assets to SEO content

Prompt

Turn this YouTube video into a full SEO article and publish it.

API Snippet

# 1) ingest
curl -X POST https://www.citedy.com/api/agent/ingest \
  -H "Authorization: Bearer citedy_agent_..." \
  -d '{"url":"https://youtube.com/watch?v=abc123"}'

# 2) poll status
curl -X GET https://www.citedy.com/api/agent/ingest/{id} \
  -H "Authorization: Bearer citedy_agent_..."

# 3) generate article
curl -X POST https://www.citedy.com/api/agent/autopilot \
  -H "Authorization: Bearer citedy_agent_..." \
  -d '{"source_urls":["https://youtube.com/watch?v=abc123"],"size":"standard"}'

Result: Structured article generated from video transcript context.

Repurpose existing media library into search content.

30-100 ($0.30-$1.00)

Lead Magnet Generation

SaaS teams and agencies collecting qualified leads

Prompt

Create a downloadable checklist lead magnet on '10-Step SEO Audit' and prepare it for gated distribution.

API Snippet

curl -X POST https://www.citedy.com/api/agent/lead-magnets \
  -H "Authorization: Bearer citedy_agent_..." \
  -H "Content-Type: application/json" \
  -d '{"type":"checklist","topic":"10-Step SEO Audit Checklist","niche":"SaaS founders","auto_publish":true}'

Result: Lead magnet asset with shareable URL and publish path.

Quick way to convert traffic into email demand capture.

Docs upload 1-2 + article

Knowledge Base -> Product-Aware Articles

Product teams that need accurate feature references

Prompt

Ingest our docs and generate product-aware SEO articles with correct API references.

API Snippet

# 1) ingest product docs
curl -X POST https://www.citedy.com/api/agent/products \
  -H "Authorization: Bearer citedy_agent_..." \
  -d '{"url":"https://docs.ourproduct.com","name":"Our Product Docs"}'

# 2) generate article with product context
curl -X POST https://www.citedy.com/api/agent/autopilot \
  -H "Authorization: Bearer citedy_agent_..." \
  -d '{"topic":"How to automate content with our API","size":"standard"}'

Result: Articles aligned with your real product language and features.

Reduces generic/hallucinated copy about your product.

Need the full execution context?

Start from API health check, then run any case above with your tenant key.