Now in Beta

Your content, everywhere.

Display your Instagram, YouTube, and TikTok content on any website. One script tag. Four beautiful layouts. Zero maintenance.

Get Started Free View API Docs
Live demo
How It Works

Three steps. Three minutes.

No OAuth tokens to manage. No cron jobs to run. Connect your account and we handle the rest.

1

Connect

Link your Instagram, YouTube, or TikTok account. We sync your latest content automatically.

2

Copy

Grab the embed code or API key from your dashboard. Pick a layout that matches your site.

3

Done

Your content appears on your website and updates automatically. Set it and forget it.

Layouts

Four layouts, infinite possibilities.

Every layout is responsive, accessible, and renders in a Shadow DOM so it never conflicts with your site's styles.

Pricing

Simple, transparent pricing.

Start free. Upgrade when you need more feeds, faster syncing, or higher API limits.

Free
$0 /mo
Perfect for trying it out
  • 1 connected feed
  • Grid layout
  • 1,000 API calls/day
  • 24h sync interval
  • CrossFeed watermark
Get Started
Creator
$5 /mo
For personal sites and blogs
  • 3 connected feeds
  • All 4 layouts
  • 10,000 API calls/day
  • 6h sync interval
  • No watermark
Start Free Trial
Agency
$49 /mo
For agencies and teams
  • 50 connected feeds
  • All 4 layouts
  • 200,000 API calls/day
  • 15min sync interval
  • Domain restriction
  • Webhook notifications
  • Dedicated support
Start Free Trial
Scale
$99 /mo
For high-traffic sites
  • Unlimited feeds
  • All 4 layouts
  • 1,000,000 API calls/day
  • 5min sync interval
  • Domain restriction
  • Webhook notifications
  • White-label option
  • Dedicated support
Contact Us
API

Developer-first by design.

Clean REST API with JSON responses. Fetch any feed with a single request.

Request
# Fetch latest 9 posts from a feed curl "https://crossfeed.app/v1/feed/your_feed_id?limit=9" \ -H "X-CrossFeed-Key: cf_live_xxxxx"
Response
{ "feed": { "id": "your_feed_id", "platform": "instagram", "handle": "@yourhandle" }, "posts": [ { "id": "post_pp01", "image_url": "https://crossfeed.app/media/...", "caption": "Golden hour on the balcony.", "source_url": "https://instagram.com/p/...", "posted_at": "2026-02-28T18:30:00Z" } ], "pagination": { "total": 9, "has_more": false } }

Or just drop in a script tag.

Embed Code
<!-- Add to your website --> <div id="my-feed"></div> <script src="https://crossfeed.app/embed.js" data-feed="your_feed_id" data-target="#my-feed" data-layout="grid" data-columns="3" data-limit="9"></script>