Facilitating access to the official BODACC bulletin through open data
Easily access French legal announcements through BODACC open data.
Every day, BODACC publishes thousands of notices. We collect, enrich them (SIRENE, VAT, financial statements) and transform them into clear, actionable, and up-to-date business signals.
7 212 / 9 756
5 778 / 7 105
4 089 / 5 587
546 / 693
ℹ️ Real-time Enrichment
Our data is automatically enriched with SIRENE information to ensure the best quality
Identify newly created companies in your sector
Detect transfers and liquidations before your competitors
Monitor your market activity in real-time
Guaranteed completeness - We scan all BODACC publications several times a day.
Each notice is automatically enriched with SIRENE, VAT data, and geolocation for instant decision-making.
Access structured, verified data via API or our interface, ready to integrate into your workflows.
Be the first to discover new business opportunities
⚡ Immediate access • 💎 Enriched data • 🔄 Continuous updates
Discover how to leverage French legal announcements to grow your business
Easily access French legal announcements through BODACC open data.
Quickly identify newly created companies or those changing status.
Automate announcement collection and link them to your CRM, ERP or analysis tools.
Integrate our data into your applications with just a few lines of code. Simple, fast, and with comprehensive documentation.
// Récupérer les créations d'entreprises
const response = await fetch('https://bodacc.io/api/v1/events', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
params: {
type: 'creation',
limit: 10,
period: 7
}
});
const data = await response.json();
console.log(`${data.events.length} nouvelles créations trouvées`);
// Traiter les résultats
data.events.forEach(event => {
console.log(`${event.company.name} - ${event.location.ville}`);
});