> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pushbase.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Check Subscription Status

> Determine if a device is currently subscribed to push notifications.

Pushbase SDK provides a function to determine if the device is already subscribed or not. This is helpful to decide if your app can request to subscribe or not.

```jsx theme={null}
// Import function
import { isSubscribedToNotifications } from "@pushbase/sdk";

// Later in your code
const isSubscribed = await isSubscribedToNotifications();
```

<Tip>
  Having trouble setting up or configuring the SDK? Our support team is here to
  help — [feel free to reach
  out](mailto:hello@pushbase.dev?subject=Pushbase%20Product%20Support)
</Tip>
