---
title: "Get vaults owned, operated, or sub-operated by the authenticated account"
method: GET
path: "/vaults/mine"
tags: ["Vaults"]
---

# Get vaults owned, operated, or sub-operated by the authenticated account

`GET /vaults/mine`

Returns all vaults (any status) where the caller is the operator or owner,
plus the vault the caller is a sub-operator (strategy) of, if any.
It includes vaults not active yet, like initializing or pending initial deposit.
Each vault includes its strategies (sub-operators), so the UI can resolve
valid operator <-> sub-operator transfer counterparties.

## Response `200`

OK

- object
  - `results` object[] — Array of results
    - `address` string — Contract address of the vault
    - `created_at` integer — Unix timestamp in milliseconds of when the vault has been created
    - `curator_name` string — Curator name of the vault (empty string if not set)
    - `description` string — Description of the vault
    - `kind` 'user' | 'protocol'
    - `last_updated_at` integer — Unix timestamp in milliseconds of when the vault was last updated
    - `lockup_period` integer — Lockup period of the vault in days
    - `max_tvl` integer — Maximum amount of assets the vault can hold in USDC
    - `name` string — Name of the vault
    - `operator_account` string — Operator account of the vault
    - `owner_account` string — Owner account of the vault
    - `profit_share` integer — Profit share of the vault in percentage, i.e. 10 means 10%
    - `status` 'INITIALIZING' | 'ACTIVE' | 'CLOSED' | 'FAILED'
    - `strategies` ResponsesStrategy[] — Strategies of the vault
      - `address` string — Contract address of the sub-operator
      - `name` string — Strategy name
      - `visibility` ResponsesVisibility
        - `balances` boolean — Whether the vault's balances are publicly visible
        - `positions` boolean — Whether the vault's positions are publicly visible
    - `strategy_description` string — Strategy description of the vault (empty string if not set)
    - `token_address` string — LP token address
    - `visibility` ResponsesVisibility
      - `balances` boolean — Whether the vault's balances are publicly visible
      - `positions` boolean — Whether the vault's positions are publicly visible

## Other responses

- `401` — Unauthorized

---

[API](https://skmtc.net/tradeparadex/apis/paradex-rest-api-2.md) · [All operations](https://skmtc.net/tradeparadex/apis/paradex-rest-api-2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tradeparadex/paradex-rest-api-2/versions/6a76453d754c/schema)
