---
title: "Get Positions"
method: GET
path: "/v1/perps/positions"
tags: ["Positions"]
---

# Get Positions

`GET /v1/perps/positions`

Returns all open positions for the authenticated account. For how positions and balances work, see [Positions and balances](/positions-balances).

## Response `200`

List of positions

- object
  - `success` boolean, required — Whether the request was successful
  - `error` string — Error message, present only on failure
  - `error_code` string — Semantic error code. See each endpoint's error responses for the specific codes it can return.
  - `deprecated` string — Deprecation notice, if applicable
  - `result` ApiPosition[]
    - `market` string, required — Perps market
    - `direction` 'long' | 'short' | 'neutral', required — Position direction
    - `netQuantity` string, required — Size of the position in base currency
    - `averageEntryPrice` string, required — Average entry price
    - `usedMargin` string, required — Margin used for the position
    - `unrealizedPnl` string, required — Unrealized PNL relative to the mark price. Positive is profit, negative is loss.
    - `markPrice` string, required — Current mark price
    - `liquidationPrice` string, required — Price at which the position will be liquidated
    - `bankruptcyPrice` string, required — Price at which bankruptcy occurs during liquidation
    - `maintenanceMargin` string, required — Maintenance margin required for this position
    - `notionalValue` string, required — Notional value of the position
    - `leverage` string, required — Current effective leverage for this position
    - `netFundingSinceNeutral` string, required — Net funding payments since the position was opened
    - `returnOnEquity` string, required — Return on equity for this position
    - `stopLossTriggerPrice` string — Triggering price for stop loss order (optional)
    - `takeProfitTriggerPrice` string — Triggering price for take profit order (optional)

## Other responses

- `401` — Authentication required. Provide a valid JWT or API key.
- `403` — Access denied. The authenticated account does not have permission.
- `429` — Rate limit exceeded. Slow down request frequency.
- `500` — Internal server error.

---

[API](https://skmtc.net/ondoperps/apis/ondo-perps-rest-api.md) · [All operations](https://skmtc.net/ondoperps/apis/ondo-perps-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ondoperps/ondo-perps-rest-api/revisions/39df6b2fa672/schema)
