> ## 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 Period History and Fund Period Instructions

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

`GET /v1/public/strategy_vault/fund/period_info`




## OpenAPI

````yaml sv.openapi get /v1/public/strategy_vault/fund/period_info
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/fund/period_info:
    get:
      tags:
        - public
      summary: Get Period History and Fund Period Instructions
      description: |

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

        `GET /v1/public/strategy_vault/fund/period_info`
      parameters:
        - name: vault_id
          in: query
          description: ''
          required: true
          schema:
            type: string
        - name: wallet_address
          in: query
          description: ''
          required: true
          schema:
            type: string
        - name: period_number
          in: query
          description: ''
          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/PeriodInfoResponse'
components:
  schemas:
    PeriodInfoResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          properties:
            data:
              type: object
              properties:
                meta:
                  type: object
                  properties:
                    total:
                      type: number
                      example: 2
                    records_per_page:
                      type: number
                      example: 25
                    current_page:
                      type: number
                      description: start from 1
                      example: 1
                rows:
                  type: array
                  items:
                    type: object
                    properties:
                      period_number:
                        type: number
                        example: 2
                      start_time:
                        type: number
                        example: 1738454400000
                      end_time:
                        type: number
                        example: 1738540800000
                      total_deposit_amount:
                        type: number
                        example: 30000
                      total_withdrawal_amount:
                        type: number
                        example: null
    BasicResponse:
      type: object
      properties:
        success:
          type: boolean
          example: true
        timestamp:
          type: number
          example: 1702989203989

````