# atPlatform : How to know the status of a notification?

**Introduction** The notify:status verb in the atProtocol is used to send notifications to an atSign when a key has been updated or deleted.

Please check the NotifyStatusVerbHandler source code to learn more about the implementation of the notify:status verb.

The focus of this article is to demonstrate how to get the status of a notification.

**Description** Sample Request:

```plaintext
notify:status:<Notification_ID>
```

This request scans all the keys which match with the regex ‘^@bob’

**Sample Response:**

```plaintext
data:delivered
```

If you are using the SDK, use the following method.

```plaintext
var result = await atClient.notifyStatus(<notification Id>);
```

You can find the actual implementation [here](https://github.com/atsign-foundation/at_client_sdk/blob/master/at_client/lib/src/client/at_client_impl.dart) .

**Coming Soon**

We are working to make the Internet better. Please come code with us https://atsign.dev!
