---
title: "Get in-app notifications"
method: GET
path: "/api/v1/notifications/messages"
tags: ["Notifications"]
---

# Get in-app notifications

`GET /api/v1/notifications/messages`

**Rate limit:** 60 requests per 60 seconds. This is the **default shared quota** — it is shared with every other endpoint that has no dedicated limit, so requests across those endpoints all draw from the same budget.

---

Retrieves all in-app notifications for the authenticated user. Rate limit: 1 request per second.

## Headers

- `x-request-id` string, uuid, required
- `x-api-key` string, password, required
- `x-user-key` string, password, required

## Response `200`

Notifications retrieved successfully

- InAppNotificationsResult — Response containing notifications and metadata
  - `messages` InAppNotificationMessage[] — List of notification messages
    - `messageId` string, uuid — Unique identifier of the notification message
    - `correlationId` string, uuid — Correlation ID for request tracing
    - `actionLink` string — URL for the notification action
    - `imageTitle` string — Title for the notification image
    - `imageUrl` string — URL of the notification image
    - `notificationType` string — Type of notification
    - `version` string — Version of the notification format
    - `aggregatable` boolean — Whether this notification can be aggregated
    - `grouped` boolean — Whether this notification is grouped
    - `aggregationId` string — ID for aggregation grouping
    - `message` string — Notification content text
    - `readStatus` 'New' | 'Seen' | 'Read' — Current read status of the notification
    - `publishDate` string, date-time — When the notification was published
    - `subCategory` string — Sub-category of the notification
    - `category` string — Category of the notification
    - `rtlLanguage` boolean — Whether the notification content is in an RTL language
    - `section` string — Section the notification belongs to
  - `meta` InAppNotificationsMetadata — Metadata about the notifications result
    - `notSeen` integer — Count of unseen notifications

## Other responses

- `401` — Unauthorized
- `422` — Validation failed
- `429` — Too Many Requests — the shared rate limit (60 requests / 60s) was exceeded.

---

[API](https://skmtc.net/etoro/apis/etoro-api.md) · [All operations](https://skmtc.net/etoro/apis/etoro-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/etoro/etoro-api/revisions/69c1fb266c35/schema)
