> ## 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 stage parameters

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

`GET /v1/admin/points/stage`

Get a specific stage (series of epochs).

Only callable by Broker Admin.




## OpenAPI

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

        `GET /v1/admin/points/stage`

        Get a specific stage (series of epochs).

        Only callable by Broker Admin.
      parameters:
        - name: orderly-timestamp
          in: header
          required: true
          schema:
            type: string
        - name: orderly-account-id
          in: header
          required: true
          schema:
            type: string
        - name: orderly-key
          in: header
          required: true
          schema:
            type: string
        - name: orderly-signature
          in: header
          required: true
          schema:
            type: string
        - name: stage_id
          in: query
          description: Filter by specific Stage
          required: false
          schema:
            type: number
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetStageParametersResponse'
      deprecated: false
components:
  schemas:
    GetStageParametersResponse:
      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
                      stage_name:
                        type: string
                        example: Trading Points
                      start_date:
                        type: string
                        example: '2024-01-01'
                      end_date:
                        type: string
                        example: '2024-01-07'
                      epoch_period:
                        type: number
                        example: 7
                      volume_boost:
                        type: number
                        example: 1
                      pnl_boost:
                        type: number
                        example: 0.5
                      l1_referral_boost:
                        type: number
                        example: 0.5
                      l2_referral_boost:
                        type: number
                        example: 0.1
                      status:
                        type: string
                        example: pending
                      is_continous:
                        type: boolean
                        example: false
    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

````