Loading CIV.IQ
Preparing your civic information dashboard
Preparing your civic information dashboard
Embed live civic data on your website using iframes. All widgets are free, require no API key, and update automatically with real government data.
Widgets send their height via postMessage. Add this script to your page for automatic iframe resizing:
<script>
window.addEventListener('message', function(e) {
if (e.data && e.data.type === 'civiq-embed-resize') {
var iframes = document.querySelectorAll('iframe[src*="civdotiq.org/embed"]');
iframes.forEach(function(iframe) {
if (iframe.contentWindow === e.source) {
iframe.style.height = e.data.height + 'px';
}
});
}
});
</script>Shows all federal representatives (senators + House member) for a given congressional district.
| Parameter | Description | Example |
|---|---|---|
| districtId | State abbreviation + district number (e.g., MI-12, CA-04, AK-AL) | MI-12 |
https://civdotiq.org/embed/reps/{districtId}<iframe
src="https://civdotiq.org/embed/reps/MI-12"
width="100%"
height="300"
frameborder="0"
style="border: 2px solid #e5e7eb; max-width: 480px;"
title="CIV.IQ District Representatives"
></iframe>Shows the current status of a bill with a visual progress bar from introduction to enactment.
| Parameter | Description | Example |
|---|---|---|
| billId | Bill ID in congress-type-number format (e.g., 119-hr-1, 119-s-100) | 119-hr-1 |
https://civdotiq.org/embed/bill/{billId}<iframe
src="https://civdotiq.org/embed/bill/119-hr-1"
width="100%"
height="300"
frameborder="0"
style="border: 2px solid #e5e7eb; max-width: 480px;"
title="CIV.IQ Bill Status Tracker"
></iframe>Shows a compact overview of a congressional district: representative, demographics, and geography.
| Parameter | Description | Example |
|---|---|---|
| districtId | State abbreviation + district number (e.g., MI-12, CA-04) | MI-12 |
https://civdotiq.org/embed/district/{districtId}<iframe
src="https://civdotiq.org/embed/district/MI-12"
width="100%"
height="300"
frameborder="0"
style="border: 2px solid #e5e7eb; max-width: 480px;"
title="CIV.IQ District Snapshot"
></iframe>width="100%" for responsive behavior.