USPTO Maintenance Fees vs EPO Annuities

USPTO maintenance fees and European renewal fees (annuities) both keep a patent alive by periodic payment, but they share almost none of their mechanics: the US charges three fees measured from the grant date, while Europe charges an annual fee measured from the filing date starting in the third year — so a docketing system that models one with the other’s logic will mis-date fees on every mixed portfolio. This page sets out the concrete differences an engineer or paralegal has to encode, with the exact base dates, cadences, grace mechanics, and administering offices.

The distinction is not academic. The same invention prosecuted in both jurisdictions produces two entirely different payment calendars from two different anchor dates, and the consequence of a miss differs too. This page is a companion to the US-focused Maintenance Fee Docketing specification and draws its holiday-roll and audit conventions from the broader Core Docketing Architecture & Deadline Types framework.

Side-by-side timeline comparison of USPTO maintenance fees and EPO annual renewal fees Two parallel timelines over a twelve-year span. The upper lane is the USPTO model, measured from the grant date, with three gold markers for maintenance fees due at 3.5, 7.5, and 11.5 years. The lower lane is the EPO model, measured from the filing date, with teal markers for renewal fees due every year from the third year onward, continuing annually to the end of the term. Below the two lanes, two summary cards contrast the models: the USPTO card lists a grant-date base, three triennial payments, a six-month grace period with a surcharge under 37 CFR 1.20(h), expiration of the patent on non-payment, and administration by the USPTO. The EPO card lists a filing-date base, annual fees from the third year, a six-month grace with a 50 percent additional fee under Rule 51(2) EPC, the application being deemed withdrawn on non-payment, and administration by the EPO before grant and national offices after grant. USPTO — 3 MAINTENANCE FEES, MEASURED FROM GRANT grant 3.5 yr 7.5 yr 11.5 yr EPO — ANNUAL RENEWAL FEES, MEASURED FROM FILING filing yr 3 yr 6 yr 9 …to term USPTO maintenance fees Base date: grant (issue) date Cadence: 3 fees at 3.5 / 7.5 / 11.5 yr Grace: 6 months + surcharge 37 CFR 1.20(h) Non-payment: patent expires Administered by: USPTO Recovery: petition, 37 CFR 1.378 EPO renewal fees (annuities) Base date: filing date Cadence: annual, from 3rd year onward Grace: 6 months + 50% fee, Rule 51(2) EPC Non-payment: application deemed withdrawn Administered by: EPO, then national offices Recovery: re-establishment, Art. 122 EPC

Different anchors, different cadences

The first and most consequential difference is the base date. US maintenance fees are counted from the grant date under 35 U.S.C. § 41(b): the patent must already have issued before any fee is owed, and the three payments fall at fixed 3.5-, 7.5-, and 11.5-year intervals from that grant. European renewal fees are counted from the filing date under Article 86 EPC: they accrue while the application is still pending, before any grant, and they never stop at a fixed count.

The cadence follows from the anchor. The US model is triennial and finite — three payments and then nothing, with the patent coasting to the end of its term. The European model is annual and open-ended — a fee for the third year and for every year thereafter, for as long as the applicant or proprietor wants to keep the case alive. A US utility patent has exactly three maintenance-fee dates in its life; a European case can have well over a dozen renewal dates across pendency and grant.

The precise European timing catches teams out. Under Rule 51(1) EPC, a renewal fee falls due on the last day of the month containing the anniversary of the filing date, and the fee is expressed “in respect of the coming year.” The practical effect, set out in the EPO Guidelines A-X, 5.2.4, is that the third-year renewal fee is due on the last day of the month containing the second anniversary of filing — a one-year offset between the fee’s ordinal name and the anniversary it hangs on. A calculator that naively puts the third-year fee on the third anniversary is systematically one year late.

The comparison matrix

Dimension USPTO maintenance fees EPO renewal fees (annuities)
Governing law 35 U.S.C. § 41(b); 37 CFR § 1.362 Article 86 EPC; Rule 51 EPC
Base date Grant (issue) date Filing date
Cadence 3 fees at 3.5 / 7.5 / 11.5 years Annual, from the 3rd year onward
First payment 3.5 years after grant 3rd-year fee, last day of the month of the 2nd filing anniversary
Grace period 6 months with surcharge — 37 CFR § 1.20(h) 6 months with a 50% additional fee — Rule 51(2) EPC
Administered by USPTO throughout EPO while pending; national offices after grant/validation
Non-payment Patent expires — 35 U.S.C. § 41(b)(2) Application deemed withdrawn — Article 86(1) EPC; or the patent lapses in that state
Recovery Petition on unintentional delay — 37 CFR § 1.378 Re-establishment of rights — Article 122 EPC

Operational Action: Store the base-date rule as an explicit per-jurisdiction attribute — grant date for the USPTO, filing date for the EPO — and never let a shared “renewal” module infer the anchor from the matter alone. The two anchors are the single most common source of a mis-dated foreign fee.

Who administers the fee, and when it moves

A subtle operational trap is that the administering office changes over a European case’s life. While the application is pending, renewal fees are paid to the EPO under Rule 51 EPC. Once the European patent is granted and validated in the designated states, the obligation to pay renewal fees to the EPO ends — the last EPO renewal fee is the one covering the year in which the mention of grant is published — and thereafter national renewal fees (national annuities) are paid to each country’s own patent office under its national law, on that country’s own schedule and in that country’s own currency.

The US model has no equivalent handoff. Maintenance fees are paid to the USPTO for the entire life of the patent; there is no pre-grant phase and no downstream national office. This asymmetry means a European portfolio needs a docketing model that switches administering-office context at grant and then fans out into per-country national-annuity schedules, while a US portfolio stays with a single office and a single three-payment schedule. The upstream register data that signals the grant/validation transition is supplied by the EPO Register Sync Architecture feed.

Operational Action: Model the EPO-to-national-office handoff explicitly at the mention-of-grant event, spawning per-state national-annuity schedules, and treat post-grant national renewals as a distinct obligation type rather than a continuation of the EPO renewal series.

Computing each schedule

The two cadences call for two separate calculators. The US side reuses the fixed-offset logic from the Maintenance Fee Docketing page; the EPO side has to resolve an anniversary and then snap to the end of that month. Both use dateutil.relativedelta for calendar-correct year offsets rather than fixed-day arithmetic.

from __future__ import annotations

from calendar import monthrange
from datetime import date

from dateutil.relativedelta import relativedelta


def uspto_maintenance_due(grant_date: date) -> list[date]:
    """USPTO: three fees at 3.5, 7.5, 11.5 years from grant (35 U.S.C. 41(b))."""
    return [grant_date + relativedelta(months=m) for m in (42, 90, 138)]


def epo_renewal_due(filing_date: date, patent_year: int) -> date:
    """EPO: renewal fee for `patent_year` (>= 3) is due on the last day of the
    month containing the (patent_year - 1)th anniversary of filing
    (Rule 51(1) EPC; EPO Guidelines A-X, 5.2.4)."""
    if patent_year < 3:
        raise ValueError("EPO renewal fees start with the 3rd year")
    anniversary = filing_date + relativedelta(years=patent_year - 1)
    last_day = monthrange(anniversary.year, anniversary.month)[1]
    return date(anniversary.year, anniversary.month, last_day)

For a European application filed on 12 March 2021, the third-year renewal fee is due on 31 March 2023 — the last day of the month containing the second anniversary — and the fourth-year fee on 31 March 2024, continuing each year. A US patent granted on 12 March 2021, by contrast, has its first maintenance fee due 12 September 2024 and only two more after that. The same weekend/holiday roll conventions from the parent architecture apply to both, but under different rules — 37 CFR § 1.7 for the USPTO and Rule 134 EPC for the EPO.

Operational Action: Give each jurisdiction its own dated schedule generator and reconcile the outputs into one portfolio calendar, but keep the generators isolated so a change to the EPO month-end rule can never perturb the fixed US triennial offsets.

Consequences of a miss, and the recovery paths

The failure modes diverge as sharply as the schedules. In the US, missing the fee through the six-month grace period means the patent expires, and the only route back is a petition to accept delayed payment under 37 CFR § 1.378 on the unintentional-delay standard. At the EPO, a missed renewal fee that also misses the six-month additional-fee period under Rule 51(2) EPC means the application is deemed withdrawn under Article 86(1) EPC; recovery is by re-establishment of rights under Article 122 EPC, which has its own strict “all due care” standard and time limits. Further processing under Article 121 EPC is expressly unavailable for renewal-fee time limits, so re-establishment is the sole EPO remedy — a materially higher bar than the US unintentional standard.

A docketing system therefore cannot treat “missed renewal” as one generic state. The US path routes to a § 1.378 petition workflow; the EPO path routes to an Article 122 re-establishment workflow with a different evidentiary burden and clock. Conflating them, or offering a US-style unintentional petition for a European lapse, is a substantive error, not a cosmetic one.

Operational Action: Attach a jurisdiction-specific recovery workflow to each lapsed-fee state — § 1.378 for the USPTO, Article 122 for the EPO — and never present a single generic “reinstate” action, because the standards, deadlines, and evidence required are fundamentally different.

Frequently Asked Questions

Why does a European case have so many more fee dates than a US patent?
Because the models are structurally different. The US charges three maintenance fees at fixed 3.5-, 7.5-, and 11.5-year points from grant and then stops, while the EPO charges a renewal fee for the third year and every year thereafter, measured from filing and running for the life of the case. A European application accrues renewal fees while still pending, before any grant, which a US patent never does.
When is the EPO third-year renewal fee actually due?
On the last day of the month containing the second anniversary of the filing date, under Rule 51(1) EPC and the EPO Guidelines A-X, 5.2.4. The fee is named for the "third year" but hangs on the second anniversary because it is paid in respect of the coming year, so a calculator that places it on the third anniversary is a full year late.
Do you keep paying renewal fees to the EPO after a European patent is granted?
No. Renewal fees are paid to the EPO only while the application is pending; the final EPO renewal fee covers the year in which the mention of grant is published. After grant and validation, national renewal fees are paid to each designated country's own patent office under its national law, on that country's schedule. The US has no such handoff — maintenance fees are always paid to the USPTO.
Are the recovery options the same if you miss a US fee versus an EPO annuity?
No. A missed US maintenance fee is recoverable by a petition under 37 CFR § 1.378 on the unintentional-delay standard. A missed EPO renewal fee, once the additional-fee period lapses, requires re-establishment of rights under Article 122 EPC on the stricter all-due-care standard, and further processing is expressly excluded for renewal fees. The evidentiary bar and time limits differ, so the workflows must be modelled separately.

↑ Back to Maintenance Fee Docketing