> ## 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 announcements

> **Limit: 10 requests per 1 second per IP address**

`GET /v1/public/announcement`

Returns active platform announcements published by Orderly.



## OpenAPI

````yaml orderly.openapi get /v1/public/announcement
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/public/announcement:
    get:
      tags:
        - public
      summary: Get announcements
      description: |-
        **Limit: 10 requests per 1 second per IP address**

        `GET /v1/public/announcement`

        Returns active platform announcements published by Orderly.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetAnnouncementsResponse'
      deprecated: false
components:
  schemas:
    GetAnnouncementsResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          required:
            - data
          properties:
            data:
              type: object
              required:
                - rows
              properties:
                rows:
                  description: Active platform announcements.
                  type: array
                  items:
                    type: object
                    properties:
                      announcement_id:
                        description: Unique ID of the announcement.
                        type: number
                        example: 1
                      message:
                        description: Announcement message shown to users.
                        type: string
                        example: >-
                          Position information is incorrect due to a 1-minute
                          delay.
                      url:
                        description: >-
                          Optional link with more details about the
                          announcement.
                        type: string
                        example: https://orderly.network/docs/release-notes/omnichain
    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

````