LogoLogo
Launch App ->
  • Overview
  • Product
    • Credit Vaults
      • Tranching
      • Live vaults
    • USP
      • Allocation
      • Risks
      • FAQs
    • Users
      • Lenders
        • Verification
        • Guides
          • Onboarding
          • Deposit
          • Redeem
      • Curators
      • Borrowers
  • Developers
    • Addresses
      • Product
        • Credit Vaults
        • USP
      • Governance
    • Integrators
    • API
      • Campaigns
      • Chains
      • Operators
      • Token blocks
      • Tokens
      • Transactions
      • Vaults
      • Vault blocks
      • Vault categories
      • Vault epochs
      • Vault performances
      • Vault types
    • Security
      • Audits
  • Resources
    • Media kit
Powered by GitBook
On this page
Export as PDF
  1. Developers
  2. API

Vault types

PreviousVault performancesNextSecurity

Last updated 1 month ago

Vault types define internal classifications for vault contracts, distinguishing between different logic structures, yield mechanisms, or operational modes. These types are useful for rendering vault metadata, sorting/filtering in UI, or determining strategy compatibility.

Structure

Each vault type object includes:

  • _id (string) — Unique identifier

  • code (string) — Internal reference code for the vault type

  • name (object) — Multilingual object (e.g., { en: "Fixed Rate" })

  • description (object) — Multilingual description object

  • createdAt, updatedAt (string) — ISO UTC timestamps

  • createdBy, updatedBy (string) — Actor IDs

Endpoints

List all vault types

get
Responses
200
A list of vault types
application/json
get
GET /v1/vault-types HTTP/1.1
Host: api.pareto.credit
Accept: */*
200

A list of vault types

{
  "data": [
    {
      "_id": "text",
      "code": "text",
      "name": {
        "en": "text"
      },
      "description": {
        "en": "text"
      },
      "createdAt": "2025-05-18T19:25:04.038Z",
      "createdBy": "text",
      "updatedAt": "2025-05-18T19:25:04.038Z",
      "updatedBy": "text"
    }
  ],
  "totalCount": 1
}

Get vault type by ID

get
Path parameters
typeIdstringRequired
Responses
200
A single vault type
application/json
get
GET /v1/vault-types/{typeId} HTTP/1.1
Host: api.pareto.credit
Accept: */*
200

A single vault type

{
  "_id": "text",
  "code": "text",
  "name": {
    "en": "text"
  },
  "description": {
    "en": "text"
  },
  "createdAt": "2025-05-18T19:25:04.038Z",
  "createdBy": "text",
  "updatedAt": "2025-05-18T19:25:04.038Z",
  "updatedBy": "text"
}
  • Structure
  • Endpoints
  • GETList all vault types
  • GETGet vault type by ID