Glossary

Server-side receipt validation

Verifying every purchase by calling the store's API from your backend — not from the client device where results can be forged.

Definition

Server-side receipt validation is the practice of sending a purchase token (or signed transaction) to a trusted backend server, which then calls the Google Play Developer API (or Apple App Store Server API) to confirm authenticity and retrieve the purchase state. The alternative — client-side validation — runs the same check on the user's device, which means a modified or compromised app can fake the verification result.

This is a fundamental security boundary in subscription apps. Client-side checks are advisory at best; server-side validation is the only way to ensure a user genuinely holds a valid, non-revoked purchase. It also keeps your API keys off the client, eliminating a key extraction vector.

Examples

Related terms

Purchase token

The credential that gets validated server-side — the input to the verification process.

Entitlement

The output of server-side validation — a normalized record of what the user can access.

RTDN

Server-side validation on initial purchase; RTDN keeps the state up to date afterward.

Verify purchases server-side in one call

Free tier — unlimited apps, 1 paywall. No credit card, no revenue share.

Start free