<!--
{
  "availability" : [
    "iOS: 17.5.0 -",
    "iPadOS: 17.5.0 -",
    "macCatalyst: 17.5.0 -",
    "macOS: 14.5.0 -",
    "tvOS: 17.5.0 -",
    "visionOS: 1.2.0 -",
    "watchOS: 10.5.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "StoreKit",
  "identifier" : "/documentation/StoreKit/ExternalPurchaseLink/eligibleURLs",
  "metadataVersion" : "0.1.0",
  "role" : "Type Property",
  "symbol" : {
    "kind" : "Type Property",
    "modules" : [
      "StoreKit"
    ],
    "preciseIdentifier" : "s:8StoreKit20ExternalPurchaseLinkO12eligibleURLsSay10Foundation3URLVGSgvpZ"
  },
  "title" : "eligibleURLs"
}
-->

# eligibleURLs

An array of external purchase links for the current storefront that the app configured and from which it chooses.

```
static var eligibleURLs: [URL]? { get async }
```

## Discussion

Use this property if your app configures the <doc://com.apple.documentation/documentation/BundleResources/Information-Property-List/SKExternalPurchaseMultiLink> property list key.

Use the [`eligibleURLs`](/documentation/StoreKit/ExternalPurchaseLink/eligibleURLs) to get the array of external purchase links for the current storefront that your app has configured in the <doc://com.apple.documentation/documentation/BundleResources/Information-Property-List/SKExternalPurchaseMultiLink> property list key. Your app can select from any of the eligible URLs. Call [`open(url:)`](/documentation/StoreKit/ExternalPurchaseLink/open(url:)) with the URL you choose.

The [`eligibleURLs`](/documentation/StoreKit/ExternalPurchaseLink/eligibleURLs) array is `nil` if any of the following is true:

- The current App Store storefront doesn’t allow external purchase or the person isn’t eligible to make external purchases.
- Your app doesn’t configure the <doc://com.apple.documentation/documentation/BundleResources/Entitlements/com.apple.developer.storekit.external-purchase-link> entitlement.
- Your app doesn’t configure any links for the current storefront in the <doc://com.apple.documentation/documentation/BundleResources/Information-Property-List/SKExternalPurchaseMultiLink> property list key

If this value is `nil` and your app also configures the <doc://com.apple.documentation/documentation/BundleResources/Information-Property-List/SKExternalPurchaseLink> property list key, check [`canOpen`](/documentation/StoreKit/ExternalPurchaseLink/canOpen) to determine whether your app can continue to provide an external purchase link.

Otherwise, if this value is `nil`, check [`canMakePayments`](/documentation/StoreKit/AppStore/canMakePayments) to determine whether your app can offer in-app purchases using the StoreKit [In-App Purchase](/documentation/StoreKit/in-app-purchase) APIs. For more information, see [`canMakePayments`](/documentation/StoreKit/AppStore/canMakePayments).

---

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)