Recovering a Missed PCT National Phase Entry via USPTO Restoration Petition

When the 30-month US national-phase deadline lapses, the application does not vanish — but the recovery route depends entirely on what was missed, and choosing the wrong petition wastes fees and time. This guide walks the decision: revival of an abandoned national stage for unintentional delay under 37 CFR § 1.137, reinstatement of rights under PCT Rule 49.6, and the distinct remedy of restoring the right of priority under 37 CFR § 1.452, together with the required statement, the fees, and the timing each demands.

The single most common error is treating all three as interchangeable “late-entry fixes.” They are not. Revival and reinstatement address a national stage that went abandoned because the 30-month acts were not performed; priority restoration addresses an entirely different failure — an international application filed just after the 12-month priority year. This page sits under the PCT National Phase Entry Rules framework and picks up exactly where a REVIEW_REQUIRED restoration flag from the entry engine leaves off.

Two Different Failures, Two Different Remedies

Before selecting a petition, classify the failure. The table separates the recovery paths by what actually lapsed.

Recovery path What failed Governing rule Standard Restores
Revival (unintentional) 30-month national-stage acts not performed; application abandoned 37 CFR § 1.137(a) Entire delay unintentional The abandoned national stage
PCT reinstatement of rights Acts under Art. 22/39 not timely performed PCT Rule 49.6; 37 CFR § 1.495©–(d) Unintentional (US standard) The right to enter national phase
Priority restoration International application filed after the 12-month priority year 37 CFR § 1.452 Unintentional (or unavoidable) The priority claim, not the entry act

The first two paths overlap heavily in US practice: the USPTO implements PCT Rule 49.6 reinstatement through the same unintentional-delay machinery as 37 CFR § 1.137, so a national stage that became abandoned for failure to perform the 37 CFR § 1.495 acts is revived on a petition, a fee, and a statement that the entire period of delay was unintentional. The third path — 37 CFR § 1.452 — is a fundamentally different remedy that a docketing system must not conflate with late entry.

Operational Action: Before opening any petition, record which deadline lapsed — the 30-month entry acts or the 12-month priority year — because that single fact selects the remedy and every downstream fee and statement.

Path A: Reviving the Abandoned National Stage

If the 30-month acts were not performed, the national stage is abandoned under 37 CFR § 1.495(h). The cure is a petition under 37 CFR § 1.137(a) accompanied by four things: the required reply (the national-stage entry acts that were missing — basic national fee, translation, oath), the petition fee under 37 CFR § 1.17(m), a statement that the entire period of delay from the due date to the filing of the petition was unintentional, and, where the delay is lengthy, additional information the Office may require to support the unintentional statement.

Because the standard is that the entire delay was unintentional, a gap between discovering the miss and filing the petition can itself defeat the showing. The petition must be filed promptly once the lapse is known, and any period of deliberate inaction after discovery undermines the statement.

Decision tree for recovering a missed US national-phase deadline A decision tree begins with a missed US national-phase deadline and a decision node asking which deadline lapsed. The left branch, entry acts missed, leads to an abandoned application under 37 CFR 1.495(h), then to the revival remedy for unintentional delay under 37 CFR 1.137(a) and PCT reinstatement under Rule 49.6, then to the requirements of a petition plus fee under 37 CFR 1.17(m), a statement that the entire delay was unintentional, and the national-stage entry acts, ending in the outcome that the national stage is revived. The right branch, the 12-month priority year missed because the international application was filed within two months after it, leads to the distinct remedy of restoration of the right of priority under 37 CFR 1.452, then to its requirements of a petition, fee, and unintentional statement filed at the receiving office or designated office, ending in the outcome that the priority claim is restored and the entry window is recomputed. MISSED DEADLINE US national phase DECISION Which deadline lapsed? entry acts missed priority year missed 30-month entry acts not performed in time Application abandoned 37 CFR 1.495(h) REMEDY · REVIVAL Unintentional delay 37 CFR 1.137(a) PCT reinstatement Rule 49.6 37 CFR 1.495(c)–(d) REQUIRED Petition + fee (37 CFR 1.17(m)) Statement: entire delay unintentional + the national-stage entry acts National stage revived entered late but preserved Int'l app filed within 2 months after the 12-month priority year REMEDY · PRIORITY Restoration of the right of priority (37 CFR 1.452) REQUIRED Petition + fee + statement unintentional (RO/US or DO/US) Priority claim restored entry window recomputed

Operational Action: File the revival petition the moment the lapse is confirmed and timestamp the discovery date in the audit log — the “entire delay unintentional” statement covers the gap up to filing, so an internal delay after discovery is itself a defect.

Path B: Restoring the Right of Priority (Do Not Confuse)

Restoration of the right of priority under 37 CFR § 1.452 is not a late-entry cure. It applies when the international application itself was filed after the 12-month Paris Convention priority period but within two months of its expiration. On a petition, the prescribed fee, and a statement that the failure to file within twelve months was unintentional (the USPTO applies the unintentional standard; some receiving offices apply the stricter “unavoidable” or due-care standard), the priority claim is restored — which in turn re-anchors the 30-month national-phase clock to the earlier priority date.

The docketing distinction is sharp: a Path A revival restores an abandoned entry; a Path B restoration restores a priority claim and therefore changes the base date every downstream deadline is computed from. Feeding a restored priority date back through the entry engine recomputes the national-phase window and every child deadline, which is why priority-chain integrity — the subject of the broader detecting broken priority chains in PCT filings work — must be re-validated after any restoration.

Encoding the Decision in Code

A docketing system should classify the failure and route to the correct remedy deterministically rather than leaving it to ad-hoc judgment. The classifier below keys off which deadline lapsed and returns the applicable rule, fee code, and required statement:

from datetime import date
from dataclasses import dataclass
from dateutil.relativedelta import relativedelta

@dataclass(frozen=True)
class RecoveryRoute:
    remedy: str
    rule: str
    fee_code: str
    statement: str

def select_recovery_route(
    priority: date, intl_filing: date, entry_deadline: date, today: date
) -> RecoveryRoute:
    """Pick the USPTO recovery path from what actually lapsed."""
    # Priority year first: was the international application itself filed late?
    priority_year_end = priority + relativedelta(months=12)
    restoration_window_end = priority_year_end + relativedelta(months=2)
    if priority_year_end < intl_filing <= restoration_window_end:
        return RecoveryRoute(
            remedy="Restoration of the right of priority",
            rule="37 CFR 1.452",
            fee_code="37 CFR 1.17(m)",
            statement="failure to file within 12 months was unintentional",
        )
    # Otherwise, a lapsed 30-month entry is a revival case.
    if today > entry_deadline:
        return RecoveryRoute(
            remedy="Revival / PCT reinstatement of rights",
            rule="37 CFR 1.137(a); PCT Rule 49.6",
            fee_code="37 CFR 1.17(m)",
            statement="entire period of delay was unintentional",
        )
    raise ValueError("No lapse detected — nothing to recover")

# International app filed 40 days after the priority year -> priority restoration.
route = select_recovery_route(date(2022, 3, 1), date(2023, 4, 10),
                              date(2024, 9, 1), date(2024, 10, 1))
assert route.rule == "37 CFR 1.452"

Operational Action: Never auto-file a petition — the classifier only flags the route; the petition, statement, and any explanation of a lengthy delay are attorney work that must clear human sign-off before submission.

Timing and Fees at a Glance

Each path carries its own fee and its own timing discipline. Both petition fees are set by 37 CFR § 1.17(m), and both statements turn on the unintentional standard, but the triggering events differ.

Path Deadline to act Fee basis Key statement
Revival / reinstatement Promptly after discovering the lapse 37 CFR § 1.17(m) Entire delay unintentional
Priority restoration Within the restoration window (int’l app ≤ 2 months late) 37 CFR § 1.17(m) 12-month failure unintentional

For a petition filed well after the lapse, the Office may require additional explanation supporting the unintentional statement, so the audit trail should preserve the discovery date, the internal handling timeline, and the reason for any delay. The same unintentional-delay machinery governs reviving a lapsed granted patent for missed maintenance fees, covered in reviving a lapsed patent with a USPTO unintentional-delay petition, so a firm can share one petition workflow across both.

Frequently Asked Questions

What standard applies to reviving a missed 30-month US national phase entry?
The unintentional-delay standard. Under 37 CFR 1.137(a) the applicant must state that the entire period of delay, from the due date until the petition is filed, was unintentional, and pay the petition fee under 37 CFR 1.17(m). The USPTO implements PCT Rule 49.6 reinstatement through this same machinery, so a national stage abandoned for failure to perform the 37 CFR 1.495 acts is revived on that showing plus the missing entry acts.
How is priority restoration different from reviving a missed national phase entry?
They fix different failures. Restoration of the right of priority under 37 CFR 1.452 applies when the international application was filed after the 12-month priority year but within two months of it, and it restores the priority claim, which re-anchors the entry clock to the earlier date. Revival under 37 CFR 1.137 restores a national stage that went abandoned because the 30-month entry acts were not performed. Confusing the two files the wrong petition.
Does a long delay before filing the revival petition matter?
Yes. Because the statement must cover the entire delay up to the filing of the petition, deliberate inaction after discovering the lapse can defeat the unintentional showing. For petitions filed well after the abandonment, the Office may require additional information explaining the delay, so the petition should be filed promptly and the discovery date and handling timeline should be preserved in the audit log.
Can a docketing system file the restoration petition automatically?
No. A system can classify which recovery route applies and assemble the fee code and statement template, but the petition, the unintentional statement, and any explanation of delay are attorney work requiring human sign-off. Auto-filing a petition or auto-docketing a restored deadline without counsel review is a malpractice vector, so the engine only flags the route.

↑ Back to PCT National Phase Entry Rules