> ## Documentation Index
> Fetch the complete documentation index at: https://staging-docs.orderly.network/llms.txt
> Use this file to discover all available pages before exploring further.

# Get market trades

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

`GET /v1/public/market_trades`

Get the latest market trades.




## OpenAPI

````yaml orderly.openapi get /v1/public/market_trades
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_trades:
    get:
      tags:
        - public
      summary: Get market trades
      description: |

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

        `GET /v1/public/market_trades`

        Get the latest market trades.
      parameters:
        - name: symbol
          in: query
          description: Symbol to query, for example `PERP_BTC_USDC`.
          required: true
          example: PERP_NEAR_USDC
          schema:
            type: string
        - name: limit
          in: query
          description: Numbers of trades want to query.
          required: false
          example: '10'
          schema:
            type: integer
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MarketTradesResponse'
      deprecated: false
components:
  schemas:
    MarketTradesResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          required:
            - data
          properties:
            data:
              type: object
              required:
                - rows
              properties:
                rows:
                  type: array
                  items:
                    type: object
                    required:
                      - symbol
                      - side
                      - executed_price
                      - executed_quantity
                      - executed_timestamp
                    properties:
                      symbol:
                        type: string
                        example: PERP_ETH_USDC
                      side:
                        type: string
                        example: BUY
                      executed_price:
                        type: number
                        example: 2050
                      executed_quantity:
                        type: number
                        example: 1
                      executed_timestamp:
                        type: number
                        example: 1683878609166
    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

````