Skip to main content

Billing & Licensing

Powerduck sells two distinct products with two different payment models. Keeping them separate is the most important thing to understand about billing.

Desktop ClientPowerduck Cloud
What you buyThe desktop applicationA hosted service
ModelOne-time purchaseMonthly subscription
Valid forPerpetual — own it foreverThe current billing period
Delivered asA license key, shown onceMembership, no key
Works offlineYesNo (it is a hosted service)

A Cloud purchase never produces a license key, and a desktop purchase is not a subscription.

Desktop perpetual license​

The desktop client is bought once and owned permanently, with no renewal or billing period. At purchase, a license key is generated:

  • Keys are built from cryptographically secure random bytes in the format PDC-XXXX-XXXX-…, not from an incrementing id or a timestamp;
  • The raw key is shown once;
  • The database stores only the SHA-256 hash of the key and its last four characters, so the original key cannot be recovered from the database.

License status​

A license moves through four states:

StatusMeaning
ISSUEDGenerated but not yet activated
ACTIVEActivated and usable
SUSPENDEDTemporarily unusable; can be reactivated
REVOKEDPermanently withdrawn; cannot be reactivated

"Perpetual" means it does not expire on a schedule; it does not mean a license can never be suspended or revoked.

Activation and audit​

Activation validates the key format, hashes it, looks up the hash, checks the status, and binds the license within a transaction. The activation endpoint is rate-limited to discourage brute-force enumeration.

Every key state change is recorded as a license event — created, activated, suspended, reactivated, or revoked — so the lifecycle remains auditable.

Cloud subscription​

Cloud access follows an active subscription to a plan, with no license key involved:

PlanMonthlyBilled annually
Free$0$0
Pro$19/mo$15/mo
Team$49/mo$39/mo

A subscription that is ACTIVE and within its current period grants the plan's capabilities. A short renewal grace period (three days) covers timing gaps around renewal; outside that window, access resolves to the Free plan. Desktop licenses are never consulted for Cloud capabilities.

What plans control​

Plans are not enforced by hard-coding plan names across the codebase. Each plan has entitlements — boolean features and numeric quotas — checked through a single entitlement service:

CapabilityFreeProTeam
OAS hostingYesYesYes
Git sourceNoYesYes
DocumentationYesYesYes
MCPNoYesYes
Custom domainNoYesYes
Max documents31001,000
Max versions202001,000
Max file size1 MiB10 MiB50 MiB
Max exposed operations101,00010,000
Max members1110

Payment providers​

Checkout is routed by region so customers see a familiar provider, and the two providers are never shown at the same time:

  • Antom — mainland China, Hong Kong, Macau, Taiwan, and Southeast Asia;
  • Paddle — the United States, Canada, Europe, Japan, Korea, Australia, New Zealand, and the UK.

The country is inferred from the client's time zone or Accept-Language header; no external GeoIP database is required. If the region cannot be determined, Antom is the fallback. For operations, the provider can also be forced through configuration, which allows an instant switch to the backup channel if one provider has an incident.

Payments are confirmed through signed provider webhooks (separate endpoints for Paddle and Antom) rather than trusting the browser return page.

Which should I buy?​

  • Want the full local workspace, offline work, and permanent ownership? Buy the desktop license once.
  • Want to publish documentation and MCP online and share stable links? Subscribe to Cloud Pro (or Team for multiple seats).
  • Many teams use both: design and test locally on the client, then host the published API on Cloud.

Related: Cloud introduction, Desktop Client.