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 categories

PreviousVault blocksNextVault epochs

Last updated 1 month ago

Vault categories group vaults by their investment profile, strategy type, or risk classification. They provide high-level metadata for sorting and UI filtering.

Structure

Each vault category object includes:

  • _id (string) — Unique identifier

  • code (string) — Unique category code (e.g. "CAT_1", "STRATEGY")

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

  • description (object) — Multilingual description

  • createdAt, updatedAt (string) — ISO timestamps (UTC Unix time)

  • createdBy, updatedBy (string) — Actor IDs

Endpoints

List all vault categories

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

A list of vault categories

{
  "data": [
    {
      "_id": "text",
      "typeId": "text",
      "name": {
        "ANY_ADDITIONAL_PROPERTY": "text"
      },
      "description": {
        "ANY_ADDITIONAL_PROPERTY": "text"
      },
      "icon": "text",
      "createdAt": "2025-05-18T12:58:52.214Z",
      "updatedAt": "2025-05-18T12:58:52.214Z",
      "createdBy": "text",
      "updatedBy": "text"
    }
  ],
  "totalCount": 1
}

Get vault category by ID

get
Path parameters
typeIdstringRequired
Responses
200
Vault category details
application/json
get
GET /v1/vault-categories/{typeId} HTTP/1.1
Host: api.pareto.credit
Accept: */*
200

Vault category details

{
  "_id": "text",
  "typeId": "text",
  "name": {
    "ANY_ADDITIONAL_PROPERTY": "text"
  },
  "description": {
    "ANY_ADDITIONAL_PROPERTY": "text"
  },
  "icon": "text",
  "createdAt": "2025-05-18T12:58:52.214Z",
  "updatedAt": "2025-05-18T12:58:52.214Z",
  "createdBy": "text",
  "updatedBy": "text"
}
  • Structure
  • Endpoints
  • GETList all vault categories
  • GETGet vault category by ID