<!--
{
  "availability" : [
    "iOS: 15.0.0 - 18.4.0",
    "iPadOS: 15.0.0 - 18.4.0",
    "macOS: 12.0.0 - 15.4.0",
    "tvOS: 15.0.0 - 18.4.0",
    "visionOS: 1.0.0 - 2.4.0",
    "watchOS: 8.0.0 - 11.4.0"
  ],
  "documentType" : "symbol",
  "framework" : "StoreKit",
  "identifier" : "/documentation/StoreKit/Product/currentEntitlement",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Property",
  "symbol" : {
    "kind" : "Instance Property",
    "modules" : [
      "StoreKit"
    ],
    "preciseIdentifier" : "s:8StoreKit7ProductV18currentEntitlementAA18VerificationResultOyAA11TransactionVGSgvp"
  },
  "title" : "currentEntitlement"
}
-->

# currentEntitlement

The transaction that entitles the user to the product.

```
var currentEntitlement: VerificationResult<Transaction>? { get async }
```

## Discussion

This value is `nil` if the customer isn’t currently entitled to this product. Current entitlement information applies only to non-consumables, non-renewing subscriptions, and auto-renewable subscriptions. The following example checks the current entitlement for a product.

```swift
guard let verificationResult = await product.currentEntitlement else {
    // The user isn’t currently entitled to this product.
    return
}

switch verificationResult {
case .verified(let transaction):
    // Check the transaction and give the user access to purchased 
    // content as appropriate.
    ...
case .unverified(let transaction, let verificationError):
    // Handle unverified transactions based 
    // on your business model.
    ...
}
```

---

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)