> ## Documentation Index
> Fetch the complete documentation index at: https://gps.appeeky.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Monetization

> Subscriptions, one-time products, offers, and legacy IAPs.

## List catalogs

```bash theme={"theme":{"light":"github-light","dark":"github-dark"}}
gps --package com.example.app --json subscriptions list
gps --package com.example.app --json otp list
gps --package com.example.app --json iap list
```

## Convert regional prices

```bash theme={"theme":{"light":"github-light","dark":"github-dark"}}
gps --package com.example.app convert-prices \
  --currency USD \
  --units 4 \
  --nanos 990000000
```

## Deeper mutations

Create/patch/delete subscriptions, base plans, offers, OTP, and batch helpers are available via ops / MCP:

```bash theme={"theme":{"light":"github-light","dark":"github-dark"}}
gps ops subscription
gps call gps_get_subscription '{
  "packageName": "com.example.app",
  "productId": "premium_monthly"
}'
```

See the [operations reference](/reference/operations#monetization) for the full monetization group (\~50 ops).
