
Asc Ppp Pricing
- 2.1k installs
- 934 repo stars
- Updated July 21, 2026
- rorkai/app-store-connect-cli-skills
This is a copy of asc-ppp-pricing by rudrankriyam - installs and ranking accrue to the original listing.
asc-ppp-pricing is an asc CLI skill that sets territory-specific pricing tiers for iOS subscriptions and in-app purchases using purchasing-power-parity or custom regional pricing strategies.
About
asc-ppp-pricing is a skill from rorkai/app-store-connect-cli-skills for creating and updating localized App Store pricing across territories using purchasing power parity or custom regional strategies. It prefers high-level asc flows: `asc subscriptions setup` and `asc iap setup` when creating new products, `asc subscriptions pricing` for subscription price changes, and `asc iap pricing summary` plus price import and price schedule commands for in-app purchases. Developers reach for asc-ppp-pricing when adjusting prices by country, launching PPP-based subscription tiers, or bulk-updating IAP price schedules without manual App Store Connect clicks. The skill suits mobile product managers and iOS release engineers monetizing globally through the asc CLI rather than the web dashboard alone.
- Automates per-territory pricing using current App Store Connect setup, pricing summary, price import, and price schedule
- Supports both subscription and in-app purchase localized pricing workflows
- Includes `asc subscriptions setup` and `asc iap setup` for new product bootstrapping
- Works with `ASC_APP_ID`, environment variables, or explicit `--app` parameter
- Respects base territory (usually USA) and baseline price for PPP calculations
Asc Ppp Pricing by the numbers
- 2,084 all-time installs (skills.sh)
- +235 installs in the week ending Jul 28, 2026 (Skillselion tracking)
- Security screen: LOW risk (skills.sh audit)
- Data as of Jul 28, 2026 (Skillselion catalog sync)
npx skills add https://github.com/rorkai/app-store-connect-cli-skills --skill asc-ppp-pricingAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 2.1k |
|---|---|
| repo stars | ★ 934 |
| Security audit | 3 / 3 scanners passed |
| Last updated | July 21, 2026 |
| Repository | rorkai/app-store-connect-cli-skills ↗ |
How do you set PPP pricing in App Store Connect?
Set territory-specific pricing tiers for iOS subscriptions and in-app purchases that respect purchasing power parity and regional economics.
Who is it for?
iOS monetization engineers using asc CLI who need per-territory subscription or IAP pricing aligned to PPP or regional strategy.
Skip if: Apps with no in-app purchases or subscriptions who only need free app metadata updates in App Store Connect.
When should I use this skill?
The user adjusts iOS subscription or IAP prices by country, implements PPP tiers, or imports regional price schedules.
What you get
Territory-specific subscription and IAP price schedules imported and applied across App Store regions via asc CLI.
- Territory price schedule
- Updated subscription tiers
Files
PPP pricing (per-territory pricing)
Use this skill to create or update localized pricing across territories based on purchasing power parity (PPP) or your own regional pricing strategy.
Prefer the current high-level flows:
asc subscriptions setupandasc iap setupwhen you are creating a new productasc subscriptions pricing ...for subscription pricing changesasc iap pricing summaryandasc iap pricing schedules ...for IAP pricing changes
Preconditions
- Ensure credentials are set (
asc auth loginorASC_*env vars). - Prefer
ASC_APP_IDor pass--appexplicitly. - Decide your base territory (usually
USA) and baseline price. - Use
asc pricing territories list --paginateif you need supported territory IDs.
Subscription PPP workflow
New subscription: bootstrap with setup
Use setup when you are creating a new subscription and want to create the group, subscription, first localization, initial price, and availability in one verified flow.
asc subscriptions setup \
--app "APP_ID" \
--group-reference-name "Pro" \
--reference-name "Pro Monthly" \
--product-id "com.example.pro.monthly" \
--subscription-period ONE_MONTH \
--locale "en-US" \
--display-name "Pro Monthly" \
--description "Unlock everything" \
--price "9.99" \
--price-territory "USA" \
--territories "USA,CAN,GBR" \
--output jsonNotes:
setupverifies the created state by default.- Use
--no-verifyonly when you explicitly want speed over readback verification. - Use
--tieror--price-point-idinstead of--pricewhen your workflow is tier-driven.
Inspect current subscription pricing before changes
Use the summary view first when you want a compact current-state snapshot.
asc subscriptions pricing summary --subscription-id "SUB_ID" --territory "USA"
asc subscriptions pricing summary --subscription-id "SUB_ID" --territory "IND"
asc subscriptions pricing prices list --subscription-id "SUB_ID" --paginateUse summary for quick before/after spot checks and prices list when you need raw price records.
Preferred bulk PPP update: import a CSV with dry run
For broad PPP rollouts, prefer the subscription pricing import command instead of manually adding territory prices one by one.
Example CSV:
territory,price,start_date,preserved
IND,2.99,2026-04-01,false
BRA,4.99,2026-04-01,false
MEX,4.99,2026-04-01,false
DEU,8.99,2026-04-01,falseDry-run first:
asc subscriptions pricing prices import \
--subscription-id "SUB_ID" \
--input "./ppp-prices.csv" \
--dry-run \
--output tableApply for real:
asc subscriptions pricing prices import \
--subscription-id "SUB_ID" \
--input "./ppp-prices.csv" \
--output tableNotes:
--dry-runvalidates rows and resolves price points without creating prices.--continue-on-error=falsegives you a fail-fast mode.- CSV required columns:
territory,price - CSV optional columns:
currency_code,start_date,preserved,preserve_current_price,price_point_id - When
price_point_idis omitted, the CLI resolves the matching price point for the row's territory and price automatically. - Territory inputs in import can be 3-letter IDs, 2-letter codes, or common territory names that map cleanly.
One-off subscription territory changes
For a small number of manual overrides, use the canonical set command.
asc subscriptions pricing prices set --subscription-id "SUB_ID" --price "2.99" --territory "IND"
asc subscriptions pricing prices set --subscription-id "SUB_ID" --tier 5 --territory "BRA"
asc subscriptions pricing prices set --subscription-id "SUB_ID" --price-point "PRICE_POINT_ID" --territory "DEU"Notes:
- Add
--start-date "YYYY-MM-DD"to schedule a future change. - Add
--preservedwhen you want to preserve the current price relationship. - The command handles both initial pricing and later price changes.
Discover raw price points only when you need them
Use price-point lookup and equalizations when you want to inspect Apple's localized ladder directly or pin exact price point IDs.
asc subscriptions pricing price-points list --subscription-id "SUB_ID" --territory "USA" --paginate --price "9.99"
asc subscriptions pricing price-points equalizations --price-point-id "PRICE_POINT_ID" --paginateVerify after apply
Re-run the summary and raw list views after changes.
asc subscriptions pricing summary --subscription-id "SUB_ID" --territory "IND"
asc subscriptions pricing summary --subscription-id "SUB_ID" --territory "BRA"
asc subscriptions pricing prices list --subscription-id "SUB_ID" --paginateIf the subscription was newly created, you can also use asc subscriptions setup with verification enabled instead of stitching together separate create and pricing steps.
Subscription availability
If you need to explicitly enable territories for an existing subscription, use the pricing availability family.
asc subscriptions pricing availability edit --subscription-id "SUB_ID" --territories "USA,CAN,IND,BRA"
asc subscriptions pricing availability view --subscription-id "SUB_ID"IAP PPP workflow
New IAP: bootstrap with setup
Use setup when you are creating a new IAP and want to create the product, first localization, and initial price schedule in one verified flow.
asc iap setup \
--app "APP_ID" \
--type NON_CONSUMABLE \
--reference-name "Pro Lifetime" \
--product-id "com.example.pro.lifetime" \
--locale "en-US" \
--display-name "Pro Lifetime" \
--description "Unlock everything forever" \
--price "9.99" \
--base-territory "USA" \
--output jsonNotes:
setupverifies the created IAP, localization, and price schedule by default.- Use
--start-datefor scheduled pricing. - Use
--tieror--price-point-idwhen you want deterministic tier- or ID-based setup.
Inspect current IAP pricing before changes
Use asc iap pricing summary as the main current-state summary for PPP work.
asc iap pricing summary --iap-id "IAP_ID" --territory "USA"
asc iap pricing summary --iap-id "IAP_ID" --territory "IND"This returns the base territory, current price, estimated proceeds, and scheduled changes for the requested territory.
Discover candidate IAP price points
Use price-point lookup when you want to inspect or pin exact price point IDs.
asc iap pricing price-points list --iap-id "IAP_ID" --territory "USA" --paginate --price "9.99"
asc iap pricing price-points equalizations --id "PRICE_POINT_ID"Create or update an IAP price schedule
For manual PPP updates, create a price schedule directly.
asc iap pricing schedules create --iap-id "IAP_ID" --base-territory "USA" --price "4.99" --start-date "2026-04-01"
asc iap pricing schedules create --iap-id "IAP_ID" --base-territory "USA" --tier 5 --start-date "2026-04-01"
asc iap pricing schedules create --iap-id "IAP_ID" --base-territory "USA" --prices "PRICE_POINT_ID:2026-04-01"Use these when you are intentionally creating or replacing schedule entries. For deeper inspection:
asc iap pricing schedules view --iap-id "IAP_ID"
asc iap pricing schedules manual-prices --schedule-id "SCHEDULE_ID" --paginate
asc iap pricing schedules automatic-prices --schedule-id "SCHEDULE_ID" --paginateVerify after apply
Use the summary command again after scheduling or applying pricing changes.
asc iap pricing summary --iap-id "IAP_ID" --territory "USA"
asc iap pricing summary --iap-id "IAP_ID" --territory "IND"For future-dated schedules, expect scheduled changes rather than an immediately updated current price.
Common PPP strategy patterns
Base territory first
- Pick one baseline territory, usually
USA. - Set the baseline price there first.
- Derive lower or higher territory targets from that baseline.
Tiered regional pricing
- High-income markets stay close to baseline.
- Mid-income markets get moderate discounts.
- Lower-income markets get stronger PPP adjustments.
Spreadsheet-driven rollout
- Build the target territory list in a CSV.
- Dry-run the import.
- Fix any resolution failures.
- Apply the import.
- Re-run summary checks for the most important territories.
Notes
- Prefer canonical commands in docs and automation:
asc subscriptions pricing ... - Older
asc subscriptions prices ...paths still exist, but the canonical pricing family is clearer. - Prefer canonical IAP commands in docs and automation:
asc iap pricing ... asc subscriptions pricing prices import --dry-runis the safest subscription batch PPP path today.asc subscriptions setupandasc iap setupalready provide built-in post-create verification.- There is not yet a single first-class before/after PPP diff command; use the current summary commands before and after apply.
- Price changes may take time to propagate in App Store Connect and storefronts.
Related skills
FAQ
Does asc-ppp-pricing work for subscriptions and IAPs?
Yes. asc-ppp-pricing covers both subscriptions via `asc subscriptions setup` and `asc subscriptions pricing`, and in-app purchases via `asc iap setup`, pricing summary, import, and schedule commands.
When should developers use asc-ppp-pricing?
Use asc-ppp-pricing when adjusting prices by country or implementing purchasing-power-parity or custom regional pricing for iOS subscriptions and in-app purchases through the asc CLI.
Is Asc Ppp Pricing safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.