<!--
{
  "availability" : [
    "iOS: 6.0.0 -",
    "iPadOS: 6.0.0 -",
    "macCatalyst: 13.1.0 -",
    "macOS: 10.8.0 -",
    "visionOS: 1.0.0 -",
    "watchOS: 2.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "EventKit",
  "identifier" : "/documentation/EventKit/EKEventStore/fetchReminders(matching:completion:)",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "EventKit"
    ],
    "preciseIdentifier" : "c:objc(cs)EKEventStore(im)fetchRemindersMatchingPredicate:completion:"
  },
  "title" : "fetchReminders(matching:completion:)"
}
-->

# fetchReminders(matching:completion:)

Fetches reminders that match a given predicate.

```
func fetchReminders(matching predicate: NSPredicate, completion: @escaping ([EKReminder]?) -> Void) -> Any
```

## Parameters

`predicate`

A search predicate created with [`predicateForReminders(in:)`](/documentation/EventKit/EKEventStore/predicateForReminders(in:)).

`completion`

A closure that receives the reminders that match `predicate`.

## Return Value

A value that represents the asynchronous fetch request. To cancel a fetch request before it completes, pass this value to [`cancelFetchRequest(_:)`](/documentation/EventKit/EKEventStore/cancelFetchRequest(_:)).

## Discussion

Only committed reminders are included in the results. To include reminders saved using [`save(_:commit:)`](/documentation/EventKit/EKEventStore/save(_:commit:)) with the `commit` parameter set to <doc://com.apple.documentation/documentation/Swift/false>, call [`commit()`](/documentation/EventKit/EKEventStore/commit()) first.

This method fetches reminders asynchronously.

---

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)