> ## 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 information about stages

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

`GET /v1/public/points/stages`

Returns information about stages.




## OpenAPI

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

        `GET /v1/public/points/stages`

        Returns information about stages.
      parameters:
        - name: stage_id
          in: query
          description: Filter by specific Stage, return all if empty
          schema:
            type: number
        - name: status
          in: query
          description: >-
            Filter by status (`completed`/`active`), return all if empty except
            pending
          schema:
            type: string
        - name: broker_id
          in: query
          description: Filter by Broker
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetPointStagesResponse'
      deprecated: false
components:
  schemas:
    GetPointStagesResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          properties:
            data:
              type: object
              properties:
                rows:
                  type: array
                  items:
                    type: object
                    properties:
                      stage_id:
                        type: number
                        example: 1
                      start_time:
                        type: number
                        example: 1704067200
                      end_time:
                        type: number
                        example: 1705276800
                      status:
                        type: string
                        example: active
                      stage_name:
                        type: string
                        example: Stage 1
                      stage_description:
                        type: string
                        example: Stage 1 description
                      is_continous:
                        type: boolean
                        example: true
    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

````