> ## 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 liquidated positions info

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

`GET /v1/public/liquidated_positions`

Returns a list of positions that have been fully liquidated. This includes historical data on positions that were closed by the liquidation engine after margin was exhausted.




## OpenAPI

````yaml orderly.openapi get /v1/public/liquidated_positions
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/liquidated_positions:
    get:
      tags:
        - public
      summary: Get liquidated positions info
      description: >

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


        `GET /v1/public/liquidated_positions`


        Returns a list of positions that have been fully liquidated. This
        includes historical data on positions that were closed by the
        liquidation engine after margin was exhausted.
      parameters:
        - name: symbol
          in: query
          description: >-
            Filter results to a specific trading symbol, for example
            `PERP_ETH_USDC`.
          required: false
          example: PERP_ETH_USDC
          schema:
            type: string
        - name: start_t
          in: query
          description: >-
            Start time of the query range as a 13-digit Unix timestamp in
            milliseconds.
          required: false
          example: ''
          schema:
            type: string
        - name: end_t
          in: query
          description: >-
            End time of the query range as a 13-digit Unix timestamp in
            milliseconds.
          required: false
          example: ''
          schema:
            type: string
        - name: page
          in: query
          description: Page number to return. Starts from 1.
          required: false
          example: ''
          schema:
            type: string
        - name: size
          in: query
          description: Number of records to return per page.
          required: false
          example: ''
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LiquidatedPositionsResponse'
      deprecated: false
components:
  schemas:
    LiquidatedPositionsResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          required:
            - data
          properties:
            data:
              type: object
              required:
                - meta
                - rows
              properties:
                meta:
                  $ref: '#/components/schemas/PaginationMeta'
                rows:
                  type: array
                  items:
                    required:
                      - timestamp
                      - liquidation_id
                      - transfer_amount_to_insurance_fund
                      - positions_by_perp
                    type: object
                    properties:
                      timestamp:
                        type: integer
                        example: 1683802462092
                      liquidation_id:
                        type: integer
                        example: 29
                      transfer_amount_to_insurance_fund:
                        type: integer
                        example: 0
                      type:
                        type: string
                        example: liquidated
                      positions_by_perp:
                        type: array
                        items:
                          type: object
                          required:
                            - abs_insurance_fund_fee
                            - abs_liquidation_fee
                            - cost_position_transfer
                            - insurance_fund_fee
                            - liquidator_fee
                            - position_qty
                            - symbol
                            - transfer_price
                          properties:
                            symbol:
                              type: string
                              example: PERP_ETH_USDC
                            seq:
                              type: number
                              example: 1730181536341943600
                            position_qty:
                              type: integer
                              example: 0
                            liquidator_fee:
                              type: number
                              example: 0.015
                            cost_position_transfer:
                              type: integer
                              example: 0
                            transfer_price:
                              type: integer
                              example: 1860
                            insurance_fund_fee:
                              type: number
                              example: 0.011999
                            abs_insurance_fund_fee:
                              type: integer
                              example: 0
                            abs_liquidator_fee:
                              type: integer
                              example: 0
    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
    PaginationMeta:
      required:
        - current_page
        - records_per_page
        - total
      type: object
      properties:
        total:
          type: integer
          example: 9
        records_per_page:
          type: integer
          example: 25
        current_page:
          type: integer
          example: 1
          description: start from 1

````