<!--
{
  "documentType" : "article",
  "framework" : "AppStoreConnectAPI",
  "identifier" : "/documentation/AppStoreConnectAPI/querying-adjusted-subscription-price-equalizations",
  "metadataVersion" : "0.1.0",
  "role" : "article",
  "title" : "Querying adjusted subscription price equalizations"
}
-->

# Querying adjusted subscription price equalizations

Compare a subscription price point against the equalized price points that Apple recommends across territories, adjusted for local pricing rules.

## Discussion

Every subscription price point has a territory and a customer price. When you set a price in one territory, Apple can equalize equivalent price points across all other territories so customers see a consistent price relative to their local currency. The equalizations endpoint returns those matching price points. The adjusted equalizations endpoint returns the same set with adjustments applied for territories where the direct equalization would violate a local pricing rule — for example, a territory that requires rounded prices or that limits price bands.

Use the adjusted equalizations endpoint when you plan a price change and need to see the actual per-territory prices customers would pay, not the raw currency conversion.

### Read adjusted equalizations for a price point

Use `GET /v1/subscriptionPricePoints/{id}/adjustedEqualizations` ([`List adjusted equalizations for a subscription price point`](/documentation/AppStoreConnectAPI/GET-v1-subscriptionPricePoints-_id_-adjustedEqualizations)) with the `id` of the source price point:

```other
GET /v1/subscriptionPricePoints/${sourcePricePointId}/adjustedEqualizations?include=territory&fields[subscriptionPricePoints]=customerPrice,territory
```

The response is a list of `SubscriptionPricePoints` — one per territory — where each price reflects the adjusted equalization for that territory. Compare each `customerPrice` against the source price to see where adjustments occur.

To read the raw equalizations without adjustments, use `GET /v1/subscriptionPricePoints/{id}/equalizations` ([`List all subscription price point equalizations`](/documentation/AppStoreConnectAPI/GET-v1-subscriptionPricePoints-_id_-equalizations)) with the same `id`. Compare the two responses to see which territories required an adjustment.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)