> ## 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 Strategy Vault Open Orders

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

`GET /v1/public/strategy_vault/vault/open_orders`

Includes both normal & algo orders




## OpenAPI

````yaml sv.openapi get /v1/public/strategy_vault/vault/open_orders
openapi: 3.0.1
info:
  title: SV
  description: ''
  version: 1.0.0
servers:
  - url: https://api-sv.orderly.org
    description: Mainnet
  - url: https://testnet-api-sv.orderly.org
    description: Testnet
security: []
tags:
  - name: public
  - name: private
paths:
  /v1/public/strategy_vault/vault/open_orders:
    get:
      tags:
        - public
      summary: Get Strategy Vault Open Orders
      description: |

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

        `GET /v1/public/strategy_vault/vault/open_orders`

        Includes both normal & algo orders
      parameters:
        - name: vault_id
          in: query
          description: ''
          required: true
          schema:
            type: string
        - name: symbol
          in: query
          description: one symbol at a time
          required: false
          schema:
            type: string
        - name: sort_by
          in: query
          description: '`ascending` / `descending` (default) on updated_time'
          required: false
          schema:
            type: string
        - name: page
          in: query
          description: the page you wish to query start from 1
          required: false
          schema:
            type: number
        - name: size
          in: query
          description: 'the page size you wish to query (max: 500)'
          required: false
          schema:
            type: number
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VaultOpenOrdersResponse'
components:
  schemas:
    VaultOpenOrdersResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          properties:
            data:
              type: object
              properties:
                meta:
                  type: object
                  properties:
                    total:
                      type: number
                      example: 9
                    records_per_page:
                      type: number
                      example: 25
                    current_page:
                      type: number
                      description: start from 1
                      example: 1
                rows:
                  type: array
                  items:
                    type: object
                    properties:
                      exchange:
                        type: string
                        example: orderly
                      order_id:
                        type: number
                        example: 78151
                      created_time:
                        type: number
                        example: 1653563963000
                      updated_time:
                        type: number
                        example: 1653564213000
                      type:
                        type: string
                        example: LIMIT
                      symbol:
                        type: string
                        example: PERP_WOO_USDC
                      side:
                        type: string
                        example: BUY
                      quantity:
                        type: number
                        example: 20
                      price:
                        type: number
                        example: 0.67772
                      amount:
                        type: number
                        example: 10
                      executed_quantity:
                        type: number
                        example: 20
                      total_executed_quantity:
                        type: number
                        example: 20
                      average_executed_price:
                        type: number
                        example: 0.67772
                      status:
                        type: string
                        example: NEW
                      is_triggered:
                        type: string
                        example: 'false'
                      child_orders:
                        type: array
                        items:
                          type: object
    BasicResponse:
      type: object
      properties:
        success:
          type: boolean
          example: true
        timestamp:
          type: number
          example: 1702989203989

````