> ## Documentation Index
> Fetch the complete documentation index at: https://api.docs.rocketfi.io/llms.txt
> Use this file to discover all available pages before exploring further.

# List vaults

> ### Response fields

| Parameter | Required | Type | Description |
| --------- | -------- | ---- | ----------- |
| `vaults` | yes | object[] | — |
| `vaults[].address` | yes | string (hex) | An Ethereum-style account address (20 bytes). |
| `vaults[].asset` | yes | integer | — |
| `vaults[].creationTimestamp` | yes | integer (int64) | — |
| `vaults[].manager` | yes | string (hex) | An Ethereum-style account address (20 bytes). |

### Response example

A sample **`200`** JSON body is attached to this operation as an OpenAPI **example** (Mintlify shows it in the example panel, similar to other exchange API docs).



## OpenAPI

````yaml /specs/openapi.json get /vaults
openapi: 3.1.0
info:
  title: RocketFi REST API
  description: REST API for Rocket Chain / RocketFi integrations.
  license:
    name: ''
  version: 0.1.0
servers:
  - url: https://beta.rocketfi.io
    description: Beta
  - url: https://testnet.rocket-cluster-1.com
    description: Testnet
  - url: https://devnet.rocket-cluster-1.com
    description: Devnet
security: []
tags:
  - name: Service
    description: Health and availability.
  - name: Market data
    description: Instruments, candles, fees, leverage, and funding data.
  - name: Account
    description: Account nonce, fees, collateral, positions, and orders.
  - name: Trading
    description: Transactions and order activity.
  - name: Vault and bridge
    description: Vaults, history, and bridge events.
  - name: Faucet (testnet)
    description: Testnet faucet for development.
paths:
  /vaults:
    get:
      tags:
        - Vault and bridge
      summary: List vaults
      description: >-
        ### Response fields


        | Parameter | Required | Type | Description |

        | --------- | -------- | ---- | ----------- |

        | `vaults` | yes | object[] | — |

        | `vaults[].address` | yes | string (hex) | An Ethereum-style account
        address (20 bytes). |

        | `vaults[].asset` | yes | integer | — |

        | `vaults[].creationTimestamp` | yes | integer (int64) | — |

        | `vaults[].manager` | yes | string (hex) | An Ethereum-style account
        address (20 bytes). |


        ### Response example


        A sample **`200`** JSON body is attached to this operation as an OpenAPI
        **example** (Mintlify shows it in the example panel, similar to other
        exchange API docs).
      operationId: get_vaults
      responses:
        '200':
          description: All vaults
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetVaultsResponse'
              example:
                vaults: []
components:
  schemas:
    GetVaultsResponse:
      type: object
      required:
        - vaults
      properties:
        vaults:
          $ref: '#/components/schemas/VaultSetView'
    VaultSetView:
      type: array
      items:
        $ref: '#/components/schemas/VaultView'
    VaultView:
      type: object
      required:
        - address
        - manager
        - asset
        - creationTimestamp
      properties:
        address:
          $ref: '#/components/schemas/AccountAddress'
        asset:
          $ref: '#/components/schemas/usize'
        creationTimestamp:
          $ref: '#/components/schemas/u64'
        manager:
          $ref: '#/components/schemas/AccountAddress'
    AccountAddress:
      type: string
      format: hex
      description: An Ethereum-style account address (20 bytes).
    usize:
      type: integer
      minimum: 0
    u64:
      type: integer
      format: int64
      minimum: 0

````