Skip to main content

Embed VCPeer Widgets

Add VCPeer peer scores and ratings to your website, portfolio page, or blog. Choose from an iframe embed, a JavaScript widget, or our API.

Widget Preview

VC

Sequoia Capital

San Francisco, US
85
Health
4.2
Rating
142
Reviews
Powered by VCPeer

Method 1: iframe Embed

The simplest way to embed a VC widget. Just copy the code below and replace YOUR_VC_SLUG with the VC's slug from VCPeer.

<iframe
  src="https://vcpeer.com/embed/widget?vc=YOUR_VC_SLUG"
  width="400"
  height="200"
  frameborder="0"
  style="border: 1px solid #27272a; border-radius: 12px;"
></iframe>

Method 2: JavaScript Widget

A more flexible option that automatically styles itself to match your site. Add the container div and script tag to your page.

<div id="vcpeer-widget" data-vc="YOUR_VC_SLUG"></div>
<script src="https://vcpeer.com/embed/widget.js" async></script>

Method 3: API Integration

For full control, use our API to fetch VC data and build your own widget. Requires an API key (available on the Pro plan).

fetch("https://vcpeer.com/api/v3/vcs/YOUR_VC_SLUG")
  .then(res => res.json())
  .then(data => {
    // Use data.name, data.healthScore
  });

Method 4: VC Card Embed

Embed a self-contained VC profile card via iframe. Shows the VC's peer score ring, star rating, review count, and ghosting rate. Replace YOUR_VC_SLUG with the VC's slug (e.g., sequoia-capital).

VCPeer

Sequoia Capital

San Francisco, US
85HEALTH
★★★★☆4.2·142 reviews
85/100
Health
4.2/5
Rating
12%
Ghost Rate
<iframe
  src="https://vcpeer.com/api/vcs/YOUR_VC_SLUG/embed-card"
  width="420"
  height="280"
  frameborder="0"
  style="border: none; border-radius: 12px; background: transparent;"
></iframe>

Method 5: Single Review Embed

Embed an individual founder review card. Shows the VC name, star rating, review title, excerpt, outcome badge, and date. Replace REVIEW_ID with the review's UUID.

Sequoia CapitalJan 15, 2026
★★★★★5/5

Outstanding partner, fast decisions

“The team was incredibly responsive and the terms were very founder-friendly. Closed the round in under 3 weeks...”

FundedSeries A
<iframe
  src="https://vcpeer.com/api/reviews/REVIEW_ID/embed"
  width="460"
  height="300"
  frameborder="0"
  style="border: none; border-radius: 12px; background: transparent;"
></iframe>

Customization Options

theme
Widget color theme|light | dark
compact
Use compact layout (smaller height)|true | false
show-reviews
Show recent review snippets|true | false
accent
Custom accent color (e.g., #FBBF24)|hex color
Need help with integration? Contact support