Skip to content
State of Idaho

https://purchasing.idaho.gov/wp-content/themes/Webmaster-v4/js/theme.js?ver=1.0.1

Solicitation: Not available
Notice ID: 12d997ea5f52d01f028f7c49fc24d92d
DepartmentState of IdahoStateIDPostedFeb 27, 2026, 12:00 AM UTCDueNo due date posted

Federal opportunity from State of Idaho. Place of performance: ID.

Market snapshot

Baseline awarded-market signal across all contracting (sample of 400 recent awards; refreshed periodically).

12-month awarded value
$68,699,272,131
Sector total $68,699,272,131 • Share 100.0%
Live
Median
$253,715
P10–P90
$29,763$10,909,709
Volatility
Volatile200%
Market composition
NAICS share of sector
A simple concentration signal, not a forecast.
100.0%
share
Momentum (last 3 vs prior 3 buckets)
+100%($68,699,272,131)
Deal sizing
$253,715 median
Use as a pricing centerline.
Live signal is computed from awarded notices already observed in the system.
Signals shown are descriptive of observed awards; not a forecast.

Related hubs & trends

Navigate the lattice: hubs for browsing, trends for pricing signals.

We write these bids →
Open on official portal →
Live POP
Place of performance
Idaho
Contracting office
Not listed

Point of Contact

Not available

Agency & Office

Department
State of Idaho
Agency
Not available
Subagency
Not available
Office
Division of Purchasing
Contracting Office Address
Not available

Description

jQuery(function($) { var anchor = window.location.hash.replace( "#", "" ); if ( anchor && anchor !== '' ) { $( ".collapse" ).collapse( 'hide' ); console.log( anchor ) $( "#" + anchor ).find( '.collapse' ).collapse( 'show' ); } function lift_logo() { var nav_height = $('nav.navbar').height(); var logo = $('.logo-lift'); logo.css('margin-top', '-' + nav_height + 'px'); } lift_logo(); $(window).on('resize', function() { lift_logo(); }); }); document.addEventListener('DOMContentLoaded', function () { var video = document.getElementById('video'); var thumbnail = document.getElementById('thumbnail'); var playButton = document.getElementById('play-button'); if(playButton !== null && typeof playButton !== 'undefined') { playButton.addEventListener('click', function () { video.play(); thumbnail.style.display = 'none'; playButton.style.display = 'none'; }); } }); document.addEventListener('DOMContentLoaded', function () { var video = document.getElementById('video-bottom'); var thumbnail = document.getElementById('thumbnail-bottom'); var playButton = document.getElementById('play-button-bottom'); if(playButton !== null && typeof playButton !== 'undefined') { playButton.addEventListener('click', function () { video.play(); thumbnail.style.display = 'none'; playButton.style.display = 'none'; }); } }); document.addEventListener('DOMContentLoaded', function() { var searchToggle = document.querySelector('.search-toggle'); var searchBar = document.querySelector('.custom-search-bar'); var searchField = document.querySelector('.search-field'); searchToggle.addEventListener('click', function() { searchBar.classList.toggle('active'); searchField.focus(); }); }); // jQuery(document).ready(function($) { // // Function to navigate slides // function navigateToSlide(target) { // var $currentSlide = $('.carousel-item.active'); // var $newSlide; // var $markers = $('#idahoSlider > ol > li, #idahoSlider > ol > button'); // Updated to select both li and button // if (target === 'prev') { // $newSlide = $currentSlide.prev('.carousel-item'); // if (!$newSlide.length) { // $newSlide = $('.carousel-item').last(); // } // } else if (target === 'next') { // $newSlide = $currentSlide.next('.carousel-item'); // if (!$newSlide.length) { // $newSlide = $('.carousel-item').first(); // } // } else if (typeof target === 'number') { // $newSlide = $('.carousel-item').eq(target); // } // // Update active slide // $currentSlide.removeClass('active').css('opacity', '0'); // $newSlide.addClass('active').css('opacity', '1'); // // Update markers // var newIndex = $newSlide.index(); // $markers.removeClass('active').css('opacity', '.5'); // $markers.eq(newIndex).addClass('active').css('opacity', '1'); // } // // Event bindings for next and previous buttons // $('.carousel-control-prev').on('click', function(e) { // e.preventDefault(); // navigateToSlide('prev'); // }); // $('.carousel-control-next').on('click', function(e) { // e.preventDefault(); // navigateToSlide('next'); // }); // // Event bindings for indicators/markers // $('#idahoSlider > ol').on('click', 'li, button', function() { // Updated to handle click on both li and button // var index = $(this).index(); // navigateToSlide(index); // }); // // Auto-advance slides every 5 seconds // //setInterval(function() { // // navigateToSlide('next'); // //}, 5000); // }); async function checkPageStatus(url) { try { const response = await fetch(url); return response.ok; // true if status is 200-299 } catch (error) { console.error('Error fetching URL:', error); return false; } } async function applyClassBasedOnUrl() { const url = window.location.href; if (url.includes("blog") || url.includes("search")) { const pageExists = await checkPageStatus(url); if (pageExists) { let paragraphs; if (url.includes("blog")) { paragraphs = document.querySelectorAll('.card-body > p'); } else if (url.includes("search")) { paragraphs = document.querySelectorAll('.card-text'); } paragraphs.forEach(p => { p.classList.add('forced-color'); }); } } } applyClassBasedOnUrl(); document.addEventListener('DOMContentLoaded', function () { var links = document.querySelectorAll('a'); links.forEach(function(link) { if (link.querySelector('i')) { link.addEventListener('mouseenter', function() { this.classList.add('no-underline'); }); link.addEventListener('mouseleave', function() { this.classList.remove('no-underline'); }); } }); }); document.addEventListener('DOMContentLoaded', function() { var topNav = document.querySelector('.top-navigation.custom-topp-nav.d-print-none'); var searchBar = document.querySelector('.custom-search-bar'); topNav.addEventListener('click', function() { searchBar.classList.toggle('active'); }); }); const searchBar = document.querySelector('.custom-search-bar'); function disableScroll() { document.body.classList.add('no-scroll'); } function enableScroll() { document.body.classList.remove('no-scroll'); } const observer = new MutationObserver(mutations => { mutations.forEach(mutation => { if (mutation.attributeName === 'class') { if (searchBar.classList.contains('active')) { disableScroll(); } else { enableScroll(); } } }); }); observer.observe(searchBar, { attributes: true }); document.addEventListener("DOMContentLoaded", function() { // Get the elements var header = document.querySelector("header.entry-header"); var siteContent = document.querySelector(".site-content"); if (header && siteContent) { // Get the parent container var parent = header.parentNode; // Insert the site content before the header //parent.insertBefore(siteContent, header); } }); // document.addEventListener("DOMContentLoaded", function() { // // Select all paragraphs // const paragraphs = document.querySelectorAll('p'); // paragraphs.forEach(paragraph => { // // Check if the paragraph ends with the ellipsis // if (paragraph.innerHTML.trim().endsWith("… ") || paragraph.innerHTML.trim().endsWith("...")) { // // Replace the ellipsis with a "More..." link // paragraph.innerHTML = paragraph.innerHTML.replace(/…$/, ' More... '); // paragraph.innerHTML = paragraph.innerHTML.replace(/\.\.\.$/, ' More... '); // } // }); // }); // Make FA work across site document.addEventListener('DOMContentLoaded', function() { var elements = document.querySelectorAll('.fas'); elements.forEach(function(element) { element.classList.remove('fas'); element.classList.add('fa-solid'); }); });

Files

Files size/type shown when available.

No downloadable attachments detected for this notice.

BidPulsar Analysis

A practical, capture-style breakdown of fit, requirements, risks, and next steps.

Analysis is being generated for this notice. Check back shortly.

FAQ

How do I use the Market Snapshot?

It summarizes awarded-contract behavior for the opportunity’s NAICS and sector, including a recent pricing band (P10–P90), momentum, and composition. Use it as context, not a guarantee.

Is the data live?

The signal updates as new awarded notices enter the system. Always validate the official award and solicitation details on SAM.gov.

What do P10 and P90 mean?

P10 is the 10th percentile award size and P90 is the 90th percentile. Together they describe the typical spread of award values.