> ## 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 price info for all symbols

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

`GET /v1/public/market_info/price_changes`

Return the current price and the price 5m, 30m, 1h, 24h, 3d, 7d, 30d ago for all symbols

Examples:

- Now: 11:06:30 (2024-07-11)  

- 5m: 11:01:00 (2024-07-11)

- 30m: 10:36:00 (2024-07-11)

- 1h: 10:06:00 (2024-07-11)

- 4h: 07:06:00 (2024-07-11)

- 24h: 11:06:00 (2024-07-10)

- 3d: 00:00:00 (2024-07-08)

- 7d: 00:00:00 (2024-07-04)

- 30d: 00:00:00 (2024-06-11)




## OpenAPI

````yaml orderly.openapi get /v1/public/market_info/price_changes
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/market_info/price_changes:
    get:
      tags:
        - public
      summary: Get price info for all symbols
      description: >

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


        `GET /v1/public/market_info/price_changes`


        Return the current price and the price 5m, 30m, 1h, 24h, 3d, 7d, 30d ago
        for all symbols


        Examples:


        - Now: 11:06:30 (2024-07-11)  


        - 5m: 11:01:00 (2024-07-11)


        - 30m: 10:36:00 (2024-07-11)


        - 1h: 10:06:00 (2024-07-11)


        - 4h: 07:06:00 (2024-07-11)


        - 24h: 11:06:00 (2024-07-10)


        - 3d: 00:00:00 (2024-07-08)


        - 7d: 00:00:00 (2024-07-04)


        - 30d: 00:00:00 (2024-06-11)
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MarketPriceChangeInfoResponse'
      deprecated: false
components:
  schemas:
    MarketPriceChangeInfoResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          required:
            - data
          properties:
            data:
              type: object
              required:
                - rows
              properties:
                rows:
                  type: array
                  items:
                    type: object
                    properties:
                      symbol:
                        type: string
                        example: PERP_BTC_USDC
                      last_price:
                        type: number
                        example: 31000
                      5m:
                        type: number
                        example: 31000
                      30m:
                        type: number
                        example: 31000
                      1h:
                        type: number
                        example: 31000
                      4h:
                        type: number
                        example: 31000
                      24h:
                        type: number
                        example: 31000
                      3d:
                        type: number
                        example: 31000
                      7d:
                        type: number
                        example: 31000
                      30d:
                        type: number
                        example: null
    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

````