---
title: "Get user's position in a vault"
method: GET
path: "/v2/vault/position"
tags: ["Vaults (Authenticated)"]
---

# Get user's position in a vault

`GET /v2/vault/position`

Returns the authenticated user's share holdings and PnL for a specific vault.

## Query parameters

- `vault_id` string, uuid, required

## Response `200`

User's vault position.

- UserVaultPositionResponse
  - `vault_id` string, uuid, required
  - `shares` string, required — Total shares owned (decimal string).
  - `shares_locked` string, required — Shares locked for pending withdrawals.
  - `available_shares` string, required — Shares available for withdrawal.
  - `total_deposited` string, required — Cumulative USD deposited.
  - `total_withdrawn` string, required — Cumulative USD withdrawn.
  - `avg_entry_price` string, required — Weighted average share price at deposits.
  - `current_value` string, required — Current value (shares * share_price).
  - `net_contribution` string, required — Net contribution (deposited - withdrawn).
  - `unrealized_pnl` string, required — Unrealised PnL (current_value - net_contribution).
  - `total_pnl` string, required — Total PnL (current_value + withdrawn - deposited).

## Other responses

- `400` — Missing vault_id parameter.
- `401` — Unauthorized — missing or invalid credentials.
- `404` — Vault not found.
- `500` — Server error.

---

[API](https://skmtc.net/strikefinance/apis/strike-finance-staking-api.md) · [All operations](https://skmtc.net/strikefinance/apis/strike-finance-staking-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/strikefinance/strike-finance-staking-api/revisions/6b7d8bd51050/schema)
