---
title: "Returns a filtered list of fills for a given position"
method: GET
path: "/v1/position/fill"
tags: ["Position"]
---

# Returns a filtered list of fills for a given position

`GET /v1/position/fill`

## Query parameters

- `order` 'asc' | 'desc'
- `limit` integer
- `cursor` string
- `positionId` string, uuid, required
- `orderBy` 'price' | 'filled' | 'createdAt'

## Response `200`

- PageOfPositionFillDtos
  - `data` PositionFillDto[], required — Array of position fill objects
    - `createdAt` integer, required — Fill creation timestamp (ms since Unix Epoch)
    - `feeUsd` string, decimal, required — The charged fee in USD expressed as a decimal (precision: 9)
    - `filled` string, decimal, required — Quantity filled in native units expressed as a decimal (precision: 9)
    - `price` string, decimal, required — Fill price expressed as a decimal (precision: 9)
    - `realizedPnl` string, decimal, required — Realized PnL from the fill in USD expressed as a decimal (precision: 9)
    - `reduceOnly` boolean, required — Indicates if the fill is reduce only
    - `side` 0 | 1, required
    - `type` 'MARKET' | 'LIMIT' | 'REALIZED_PNL' | 'LIQUIDATION' | 'REALIZED_FUNDING' | 'DELEVERAGE' | 'SETTLEMENT', required — Corresponding order type that led to the position fill
  - `hasNext` boolean, required — Whether there are more objects to paginate through
  - `nextCursor` string — Pointer to the next page in pagination dataset

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `413` — Payload Too Large
- `422` — Unprocessable Entity
- `429` — Too Many Requests
- `500` — Internal Server Error

## Changes

- **2026-08-25** `63e8937ff6f7` — 1 warning, 1 info
  - added the new `SETTLEMENT` enum value to the `data/items/type` response property for the response status `200`
  - added the non-success response with the status `413`

[Change history](https://skmtc.dev/ethereal/apis/ethereal-exchange-api/changes/v1/position/fill/get.md)

---

[API](https://skmtc.dev/ethereal/apis/ethereal-exchange-api.md) · [All operations](https://skmtc.dev/ethereal/apis/ethereal-exchange-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/ethereal/ethereal-exchange-api/revisions/63e8937ff6f7/schema)
