Ferret — France Parsers
49 French data parsers — government data, geo, economy, health, transport, education, culture, services, environment. Sourced from data.gouv.fr and the national open APIs (INSEE, IGN, ANSM, SNCF, …).
Summary by category
| Category | Count | Parsers |
|---|---|---|
| Government | 6 | datasets, orgs, stats, topics, search, reuses |
| Geo | 6 | communes, départements, régions, adresse (BAN), reverse geocode, code postal |
| Economy | 4 | DVF (50 items), immobilier, loyers, SIRENE |
| Business | 2 | API Entreprises, RNA associations |
| Health | 3 | médicaments (ANSM), médecins (RPPS), water quality |
| Transport | 3 | bornes électriques, covoiturage, gares SNCF |
| Education | 2 | établissements, calendrier scolaire |
| Culture | 2 | musées, monuments |
| Services | 4 | services publics, bibliothèques, toilettes, parkings |
| Environment | 4 | air quality, risques, arbres, eau potable |
| Misc | 8 | carburants, décès, députés, élections, sport, marchés, ZRR, search |
| Total | 44 listed + 5 portal/intl | 49 |
Government (6) — data.gouv.fr
The French national open data portal.
# Datasets matching a query
curl "http://localhost:9093/french/datasets?q=population"
# Organizations
curl "http://localhost:9093/french/orgs?q=insee"
# Reuses of a dataset
curl "http://localhost:9093/french/reuses?q=logement"
# Topics
curl "http://localhost:9093/french/topics?q=transport"
# Stats about the portal
curl "http://localhost:9093/french/stats"
# Full-text search across the portal
curl "http://localhost:9093/french/search?q=dvf"
Geo (6)
# Communes (cities/towns)
curl "http://localhost:9093/french/communes?q=Lyon"
# Départements
curl "http://localhost:9093/french/departements"
# Régions
curl "http://localhost:9093/french/regions"
# Address lookup (Base Adresse Nationale)
curl "http://localhost:9093/french/adresse?q=10+rue+de+Rivoli+Paris"
# Reverse geocode (lat,lon → address)
curl "http://localhost:9093/french/reverse?lat=48.8566&lon=2.3522"
# Code postal → commune
curl "http://localhost:9093/french/code_postal?q=75001"
Economy (4)
# Demande de Valeurs Foncière — real estate transactions (50 items)
curl "http://localhost:9093/french/dvf?q=75001"
# Real estate listings
curl "http://localhost:9093/french/immobilier?q=Lyon"
# Median rents by commune
curl "http://localhost:9093/french/loyers?q=Paris"
# SIRENE — company directory
curl "http://localhost:9093/french/sirene?q=Decathlon"
Business (2)
# API Entreprises (full company profile)
curl "http://localhost:9093/french/entreprise?q=552033579"
# RNA — associations registry
curl "http://localhost:9093/french/rna?q=Restos+du+Cœur"
Health (3)
# Médicaments — drug database (ANSM)
curl "http://localhost:9093/french/medicaments?q=paracetamol"
# Médecins — healthcare professionals (RPPS)
curl "http://localhost:9093/french/medecins?q=75001"
# Water quality
curl "http://localhost:9093/french/eau?q=Paris"
Transport (3)
# EV charging stations
curl "http://localhost:9093/french/bornes?q=Paris"
# Carpooling offers
curl "http://localhost:9093/french/covoiturage?q=Lyon-Paris"
# SNCF train stations
curl "http://localhost:9093/french/gares?q=Lyon"
Education (2)
# Schools (établissements)
curl "http://localhost:9093/french/education?q=75001"
# School calendar (calendrier scolaire)
curl "http://localhost:9093/french/calendrier?q=2026"
Culture (2)
# Museums
curl "http://localhost:9093/french/musees?q=Paris"
# Monuments
curl "http://localhost:9093/french/monuments?q=Paris"
Services (4)
# Public services
curl "http://localhost:9093/french/services?q=Paris"
# Libraries
curl "http://localhost:9093/french/bibliotheques?q=Lyon"
# Public toilets
curl "http://localhost:9093/french/toilettes?q=Paris"
# Parkings
curl "http://localhost:9093/french/parkings?q=Paris"
Environment (4)
# Air quality
curl "http://localhost:9093/french/air?q=Paris"
# Natural risks (inondation, sismique, ...)
curl "http://localhost:9093/french/risques?q=Lyon"
# Trees (urban canopy)
curl "http://localhost:9093/french/arbres?q=Paris"
# Drinking water
curl "http://localhost:9093/french/eau_potable?q=Paris"
Misc (8)
# Fuel prices
curl "http://localhost:9093/french/carburants?q=75001"
# Deaths (registre)
curl "http://localhost:9093/french/deces?q=Jean+Dupont"
# MPs (députés)
curl "http://localhost:9093/french/elus?q=Lyon"
# Elections results
curl "http://localhost:9093/french/elections?q=Lyon"
# Sports facilities
curl "http://localhost:9093/french/sport?q=Paris"
# Markets (marchés)
curl "http://localhost:9093/french/marches?q=Lyon"
# ZRR (Zone de Revitalisation Rurale)
curl "http://localhost:9093/french/zrr?q=Lyon"
# Cross-portal search
curl "http://localhost:9093/french/search?q=logement"
Cross-cutting business endpoints
Three business endpoints aggregate French parsers into one analysis:
| Endpoint | Combines | Use case |
|---|---|---|
/france/living | ~10 parsers (real estate, health, transport, schools, culture, risks, services) | Quality-of-life report for a commune |
/france/company | SIRENE + dirigeants + RNA + DVF | Due diligence on a company |
/realestate/estimate | DVF + immobilier + loyers + code postal | Property valuation |
Each has an /llm variant returning an ~800-token markdown report.
Related
- Parsers — all 333 parsers
- Business endpoints — the 17 cross-cutting analyses
- API Reference