# IReminderService.GetReminders(GrainId, CancellationToken)

[Type overview](/orleans/docs/api/csharp/microsoft.orleans.reminders/orleans.ireminderservice/) | [Methods](/orleans/docs/api/csharp/microsoft.orleans.reminders/orleans.ireminderservice/methods/)

[Source](https://github.com/dotnet/orleans/blob/1644940b035c7bdf215a4fd7135757c06bcfe9ec/src/Orleans.Reminders/SystemTargetInterfaces/IReminderService.cs#L121)

```csharp
[Orleans.Alias(419EB51E)]
public virtual Task<List<IGrainReminder>> GetReminders(GrainId grainId, CancellationToken cancellationToken)
```

Gets all reminders registered for the specified grain.

### Parameters

- `grainId` (`GrainId`): A reference to the grain.
- `cancellationToken` (`CancellationToken`): The cancellation token.

### Returns

A list of all registered reminders for the specified grain.
