Skip to content

Renewr APIPatent annuity management, programmatically.

The Renewr External API v2 lets you read your patent portfolio, review upcoming renewals and their fees, send renewal instructions, and reconcile invoices, all from your own systems.

A 60-second look โ€‹

Authenticate every call with your API key, then walk the resources:

bash
# What falls due in October, with estimated fees?
curl "https://api.renewr.example/api/v2/external/patent-events?dueMonth=2026-10&include=fees" \
  -H "x-api-key: $RENEWR_API_KEY"

# Instruct: renew this annuity.
curl -X POST "https://api.renewr.example/api/v2/external/patent-instructions" \
  -H "x-api-key: $RENEWR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "instructions": [ { "eventId": "9f0d1e7a-3b2c-4d5e-8f6a-7b8c9d0e1f2a", "decision": "PROCEED" } ] }'

Every response carries an X-Request-Id correlation header, RateLimit-* quota headers, and errors are uniform RFC 9457 application/problem+json with stable, machine-readable codes.

Looking for ready-made answers ("I want an estimate for the next three months, how?"): browse the Cookbook.

Access

The API and this documentation are available to Renewr clients and their integration partners. Your API key is provided by the Renewr team; see Getting started.

Renewr External API v2. Access on invitation.