# API Endpoint for Retrieving Notification Status

### Get Notification Status Endpoint

* **Description:** This endpoint is used to query the status of a single notification item that was previously sent as part of a notification group. It provides detailed information including timestamps and the current delivery state of the notification.
* **HTTP Method:** GET
* **Endpoint URL:** `{{api-host}}/api/v1/organizations/{{organization-id}}/notifications/{{notification-group-id}}/items/{{_item-id}}`

{% embed url="<https://dev.blerify.com/#49db9853-413f-49f6-95ca-05840de057b7>" %}
Get Notification Status
{% endembed %}

### Example Workflow

1. After sending notifications in bulk using the `"Send Bulk Notifications"` endpoint, each item in the response contains a unique `_item-id`.
2. To track the delivery or read status of a specific user’s notification, call this endpoint using the `organization-id`, `notification-group-id`, and `_item-id`.
3. The response includes:
   * Delivery status (`sent`, `received`, `read`, etc.).
   * Timestamps for each phase of the notification lifecycle.
   * Dynamic content (e.g., `Amount`) tied to the notification item.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.blerify.com/developers/api-documentation/api-endpoint-for-retrieving-notification-status.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
