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

# Get all notifications

> **Limit: 10 requests per 60 seconds**

`GET /v1/notification/inbox/notifications`

Returns notification records for the user.

Use `type` to filter the categories returned.




## OpenAPI

````yaml orderly.openapi get /v1/notification/inbox/notifications
openapi: 3.0.1
info:
  title: EVM
  description: ''
  version: 1.0.0
servers:
  - url: https://api.orderly.org
    description: Mainnet
  - url: https://testnet-api.orderly.org
    description: Testnet
security: []
tags:
  - name: public
  - name: private
paths:
  /v1/notification/inbox/notifications:
    get:
      tags:
        - private
      summary: Get all notifications
      description: |
        **Limit: 10 requests per 60 seconds**

        `GET /v1/notification/inbox/notifications`

        Returns notification records for the user.

        Use `type` to filter the categories returned.
      parameters:
        - name: type
          in: query
          description: 'Filter notifications by type: `TRADE` or `SYSTEM`.'
          required: false
          example: ''
          schema:
            type: string
        - name: page
          in: query
          description: start from 1
          required: false
          example: ''
          schema:
            type: number
        - name: size
          in: query
          description: Number of notifications to return per page.
          required: false
          example: ''
          schema:
            type: number
        - $ref: '#/components/parameters/orderly_timestamp'
        - $ref: '#/components/parameters/orderly_account_id'
        - $ref: '#/components/parameters/orderly_key'
        - $ref: '#/components/parameters/orderly_signature'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AllNotificationsResponse'
      deprecated: false
components:
  parameters:
    orderly_timestamp:
      name: orderly-timestamp
      in: header
      description: Timestamp of the signed request in milliseconds.
      required: true
      style: simple
      explode: false
      schema:
        type: string
      example: '1649920583000'
    orderly_account_id:
      name: orderly-account-id
      in: header
      description: Account ID of the authenticated account.
      required: true
      style: simple
      explode: false
      schema:
        type: string
      example: 6.858456565150415e+75
    orderly_key:
      name: orderly-key
      in: header
      description: Public orderly key used to sign the request.
      required: true
      style: simple
      explode: false
      schema:
        type: string
      example: ed25519:8tm7dnKYkSc3FzgPuJaw1wztr79eeZpN35nHW5pL5XhX
    orderly_signature:
      name: orderly-signature
      in: header
      description: Signature of the request payload generated with the orderly key.
      required: true
      style: simple
      explode: false
      schema:
        type: string
      example: >-
        dG4bkKiqG0dUYLzViRZkvbI6Sy239JxAdNMIBxFZ4w030Jofr0ORV06GHtvXZkaZaWUXE+XAU3fnzKN/5fDeBQ==
  schemas:
    AllNotificationsResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - required:
            - data
          type: object
          properties:
            data:
              required:
                - meta
                - rows
              type: object
              properties:
                rows:
                  type: array
                  items:
                    $ref: '#/components/schemas/Notification'
                meta:
                  $ref: '#/components/schemas/PaginationMeta'
    BasicResponse:
      required:
        - success
      type: object
      properties:
        success:
          description: Indicates whether the request was successful.
          type: boolean
          example: true
        timestamp:
          description: Server timestamp in milliseconds.
          type: integer
          example: 1702989203989
    Notification:
      type: object
      properties:
        id:
          description: Unique ID of the notification.
          type: integer
          example: 12345
        message_type:
          type: string
          description: Internal message type of the notification payload.
          example: ORDER_FILLED
        email:
          type: string
          description: Email address bound to the account, when available.
          example: test@orderly.network
        application_id:
          type: string
          description: Wallet address associated with the account.
          example: '0x0f29bfb4c1bc9fea3f3be46bab6d795e22a6272354b136fde05f6b80cfcad546'
        title:
          description: Notification title shown to the user.
          type: string
          example: ' Your order has been filled'
        type:
          type: string
          description: Notification category. Supported values are `TRADE` and `SYSTEM`.
          example: TRADE
        level:
          type: string
          description: >-
            Notification priority level. Supported values are `GENERAL` and
            `IMPORTANT`.
          example: GENERAL
        content_summary:
          description: Short summary shown in notification lists.
          type: string
          example: 'Your order to buy 1 NEAR-PERP has been filled: 0.5/1 at 1.9876.'
        content:
          description: Full notification content, which may include HTML formatting.
          type: string
          example: >-
            <p>Your order to buy 1 NEAR-PERP has been filled: 0.5/1 at
            1.9876.</p>
        content_raw:
          required:
            - executed_price
            - executed_quantity
            - executed_timestamp
            - order_id
            - side
            - symbol
          type: object
          properties:
            symbol:
              type: string
              example: PERP_NEAR_USDC
            side:
              type: string
              example: BUY
            order_id:
              type: integer
              example: 1
            executed_price:
              type: number
              example: 1.9876
            executed_quantity:
              type: number
              example: 0.5
            executed_timestamp:
              type: integer
              example: 1567382401000
        mark_read:
          type: integer
          description: Read state of the notification. `1` means read and `0` means unread.
          example: 1
        operator:
          description: Internal operator identifier associated with the notification event.
          type: integer
          example: 1
        created_time:
          description: Timestamp when the notification was created in milliseconds.
          type: integer
          example: 1670425970373
        announcement_id:
          description: >-
            Related announcement ID when the notification comes from an
            announcement.
          type: integer
    PaginationMeta:
      required:
        - current_page
        - records_per_page
        - total
      type: object
      properties:
        total:
          type: integer
          example: 9
        records_per_page:
          type: integer
          example: 25
        current_page:
          type: integer
          example: 1
          description: start from 1

````