VOOZH about

URL: https://apify.com/studio-amba/jorf-scraper

⇱ JORF Scraper β€” French Official Gazette Laws & Decrees Β· Apify


πŸ‘ JORF Scraper β€” French Official Gazette, No Login Required avatar

JORF Scraper β€” French Official Gazette, No Login Required

Pricing

from $4.00 / 1,000 result scrapeds

Go to Apify Store

JORF Scraper β€” French Official Gazette, No Login Required

Scrape the Journal Officiel de la Republique Francaise (JORF) from Legifrance. Extract laws, decrees, ordinances, and orders with full text, NOR numbers, publication dates, and signatories. Filter by text type, date range, or keyword. No cookies, no login.

Pricing

from $4.00 / 1,000 result scrapeds

Rating

0.0

(0)

Developer

πŸ‘ Studio Amba

Studio Amba

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Categories

Share

JORF Scraper β€” French Official Gazette Laws & Decrees

Extract laws, decrees, ordinances, orders, and official notices from France's Journal Officiel de la Republique Francaise (JORF) via Legifrance. Returns structured data including full text, NOR numbers, publication dates, signature dates, and signatories. Filter by text type, date range, or keyword. No cookies, no login required.

How to scrape JORF data

This actor scrapes the Journal Officiel section of Legifrance, France's official legal database maintained by DILA (Direction de l'Information Legale et Administrative). The JORF has published every French law, decree, and regulation since 1868, with digital archives going back to 1990.

Search by Keyword

Enter a keyword to search across all JORF texts. The search covers titles, text bodies, NOR numbers, and related metadata. Examples: "energie renouvelable", "code du travail", "nomination prefet".

Filter by Text Type

Narrow results to specific types of legal texts:

  • LOI β€” Laws voted by Parliament
  • ORDONNANCE β€” Government ordinances (legislative delegation)
  • DECRET β€” Decrees issued by the President or Prime Minister
  • ARRETE β€” Ministerial or prefectoral orders
  • AVIS β€” Official notices and opinions
  • DECISION β€” Decisions from constitutional and administrative bodies
  • CIRCULAIRE β€” Administrative circulars and instructions

Filter by Date Range

Restrict results to a specific period using signature date (when the text was signed) and publication date (when it appeared in the JORF).

What data does JORF Scraper extract?

FieldTypeDescription
titleStringFull official title of the text
natureStringType: LOI, DECRET, ARRETE, ORDONNANCE, AVIS, DECISION, CIRCULAIRE
norNumberStringNOR identifier (unique administrative reference, e.g., JUSC2421685A)
jorfNumberStringJORF issue number (e.g., JORF n0194)
publicationDateStringDate of publication in the Journal Officiel
signatureDateStringDate the text was signed by the authority
textNumberStringPosition within the JORF issue (e.g., Texte n31)
jorfTextIdStringUnique Legifrance identifier (JORFTEXT...)
fullTextStringComplete body text (optional, can be disabled for metadata-only runs)
signatoryStringSigning authority (minister, president, etc.)
urlStringDirect link to the text on Legifrance
scrapedAtStringISO timestamp of extraction

Input Parameters

ParameterTypeDefaultDescription
Search KeywordsStringβ€”Search JORF texts by keyword
Text Type (Nature)ArrayAll typesFilter by LOI, DECRET, ARRETE, etc.
Date FromStringβ€”Signature date filter (DD/MM/YYYY)
Date ToStringβ€”Publication date filter (DD/MM/YYYY)
Include Full TextBooleantrueInclude complete text body
Max ResultsInteger50Maximum texts to extract
Proxy ConfigurationObjectFR ResidentialProxy settings

Example output

{
"title":"Decret n 2024-567 du 20 juin 2024 relatif a la transition energetique",
"nature":"DECRET",
"norNumber":"TRER2412345D",
"jorfNumber":"JORF n0145",
"publicationDate":"21 juin 2024",
"signatureDate":"20 juin 2024",
"textNumber":"Texte n12",
"jorfTextId":"JORFTEXT000049876543",
"fullText":"Le Premier ministre, Sur le rapport du ministre de la transition energetique...",
"signatory":"Le Premier ministre",
"url":"https://www.legifrance.gouv.fr/jorf/id/JORFTEXT000049876543",
"scrapedAt":"2026-05-23T10:00:00.000Z"
}

Use cases

  • Legal monitoring β€” Track new laws and decrees in your sector (environment, labor, finance, health)
  • Regulatory compliance β€” Get notified when regulations change affecting your business
  • Legal research β€” Build a searchable database of French legislation for law firms and academics
  • Government affairs β€” Monitor nominations, appointments, and institutional decisions
  • Data journalism β€” Analyze legislative trends, decree frequency, and policy patterns over time
  • Business intelligence β€” Track government procurement rules, tax changes, and industry regulations

Tips for best results

  • Track legislation by sector: Search with domain-specific keywords like "sante publique", "environnement", "numerique", or "finances publiques"
  • Monitor nominations: Search for "nomination" or "arrete portant nomination" to track government appointments
  • Metadata-only mode: Disable "Include Full Text" for faster runs when you only need titles, dates, and NOR numbers
  • Date filtering: Use date ranges to get a specific period's legislation β€” useful for regulatory audits
  • NOR number lookup: Every JORF text has a unique NOR number. Use it to reference specific texts across systems

How much does it cost?

JORF Scraper runs on the Apify platform. You pay only for compute resources used.

Search sizeEstimated timeEstimated cost
10 texts~30 seconds~$0.01
50 texts~2 minutes~$0.05
200 texts~8 minutes~$0.20
1,000 texts~40 minutes~$0.80

Legifrance is a public government website with no rate limiting. Costs are purely Apify compute. Apify's free tier includes $5 of monthly compute β€” enough to extract thousands of texts.

Can I integrate?

Yes. Send JORF data directly to your tools:

  • Google Sheets β€” Build a legislative monitoring dashboard updated on schedule
  • Slack β€” Get notified when new laws or decrees matching your keywords are published
  • Webhooks β€” Push to any HTTP endpoint for custom regulatory compliance pipelines
  • Email β€” Receive daily or weekly digests of new JORF publications

Can I use it as an API?

Yes. Call JORF Scraper programmatically:

Python β€” Monitor new energy decrees

from apify_client import ApifyClient
client = ApifyClient("YOUR_API_TOKEN")
run = client.actor("studio-amba/jorf-scraper").call(run_input={
"searchQuery":"energie renouvelable",
"nature":["DECRET","LOI"],
"maxResults":20,
})
for text in client.dataset(run["defaultDatasetId"]).iterate_items():
print(f"{text['nature']} | {text['publicationDate']} | {text['title'][:80]}")

JavaScript β€” Get latest laws

import{ ApifyClient }from'apify-client';
const client =newApifyClient({token:'YOUR_API_TOKEN'});
const run =await client.actor('studio-amba/jorf-scraper').call({
searchQuery:'loi',
nature:['LOI'],
maxResults:10,
});
const{ items }=await client.dataset(run.defaultDatasetId).listItems();
items.forEach(t=> console.log(`${t.publicationDate} | ${t.norNumber} | ${t.title}`));

FAQ

What is the Journal Officiel (JORF)?

The Journal Officiel de la Republique Francaise is France's official gazette, published daily by DILA. Every law, decree, ordinance, and official government act must be published in the JORF to take legal effect. It has been published continuously since 1868.

What is a NOR number?

NOR (Nomenclature des actes publiees au Journal Officiel) is a unique 12-character identifier assigned to every text published in the JORF. It encodes the issuing ministry, year, and sequence. Example: JUSC2421685A = Justice ministry, 2024, sequence 21685, type A (arrete).

How current is the data?

Texts are published on Legifrance within 24 hours of their official JORF publication. The digital archive goes back to 1990 for most text types.

What about the Legifrance API?

The official Legifrance API (via PISTE) requires OAuth registration. This actor scrapes the public website directly, requiring no registration or API keys. All data is published under Open Licence 2.0 (etalab).

Does this include court decisions?

No. This actor focuses specifically on the JORF (laws, decrees, regulations). Court decisions are published separately in other Legifrance databases (JURI, CETAT, CONSTIT).

Limitations

  • Historical texts before June 2004 may lack HTML versions and have limited content extraction
  • Very long texts (e.g., full budget laws) may have truncated full text
  • The NOR number is not available for all texts (some older texts lack it)
  • Date formats are in French (e.g., "15 aout 2024") β€” parse accordingly

Other French government scrapers

Working with French public data? Combine with these tools:

Your feedback

Found a bug or want a feature? Open an issue on the Issues tab. Your feedback helps improve this actor.

You might also like

JORF Scraper: French Official Journal API (Legifrance + DILA)

dltik/jorf-bulletin-officiel-scraper

Scrape the Journal Officiel de la RΓ©publique FranΓ§aise (JORF). Get decrets, lois, arretes by date range or NOR. Full text, NATURE, NOR, ELI URI, MINISTERE, SIGNATAIRES, Legifrance URLs. Compliance, lawtech, public-affairs. $0.005/article.

MCP Server: Legifrance JORF (Journal Officiel) for AI Agents

dltik/mcp-server-legifrance

Apify MCP server exposing 6 tools to query the French Journal Officiel (JORF) - laws, decrees, arretes, decisions - via DILA Open Data. AI agents ready. No API key needed. $0.01 per tool call.

Gazzetta Ufficiale Scraper - Italian Official Gazette

studio-amba/gazzetta-ufficiale-scraper

Scrape laws, decrees, regulations, and public notices from Italy's official gazette (Gazzetta Ufficiale). Extract act titles, types, numbers, dates, issuing authorities, full text, and PDF links. Browse recent issues or search by keyword. No login or cookies required.

BOE Scraper β€” Spanish Official Gazette

studio-amba/boe-scraper

Extract laws, royal decrees, appointments, public notices, and procurement announcements from Spain's Boletin Oficial del Estado (BOE). Filter by date, section, department, or keyword. Returns structured data with direct links to PDF, HTML, and XML documents. No cookies, no login.

Fast Reddit Search Scraper (No cookies, No login)

iskander/fast-reddit-scraper

Collect Reddit search results fast for cheapest price. No cookies or login required

πŸ‘ User avatar

Iskandar Souissi

205

5.0

DOF Mexico Official Gazette Scraper

scrapers_lat/dof-scraper

Extract entries from Mexico's Diario Oficial de la Federacion (official federal gazette) by keyword or publication date. Scrape title, publication date, issuing body, agency, gazette ID, nota URL and full content for sanctions, insolvency and appointment notices.

2

5.0

Bundesgesetzblatt Scraper β€” German Law Gazette

studio-amba/bundesgesetzblatt-scraper

Scrape the German Federal Law Gazette (Bundesgesetzblatt). Extract laws, regulations, and legal texts from the official NeuRIS API. Search by keyword, get full text, articles, and PDF links. No login needed.

Facebook Marketplace Scraper β€” No Login Required

crowdpull/facebook-marketplace-scraper

Extract listings from Facebook Marketplace by location. No login or cookies needed. Supports geo-targeted search, category filtering, price range, and keyword search.

Diario da Republica Scraper - Portuguese Official Gazette

studio-amba/diario-da-republica-scraper

Scrape Portuguese legislation, decrees, regulations, and official announcements from the Diario da Republica (dre.pt). Search by keyword, document type, date range, or series. Extract title, summary, full text, and PDF links. No login or cookies required.