Vaults

Tokenized Vault API Endpoints

This documentation covers the tokenized vault endpoints for retrieving vault information.

Base URL

https://api.upshift.finance/v1/

Get All Tokenized Vaults

GET /tokenized_vaults

Retrieve a list of all tokenized vaults with optional status filtering.

Query Parameters:

  • status (optional): Filter by vault status (active or closed)

Get Tokenized Vaults

get
Query parameters
statusany ofOptional

Filter vaults by status (e.g. active, closed)

string · enumOptionalPossible values:
or
nullOptional
Responses
200

Successful Response

application/json
get
/tokenized_vaults

Get Specific Tokenized Vault

GET /tokenized_vaults/{vault_address}

Get detailed information for a specific tokenized vault by its contract address.

Path Parameters:

  • vault_address (required): The vault contract address

Get Tokenized Vault

get
Path parameters
vault_addressstringRequired
Responses
200

Successful Response

application/json
get
/tokenized_vaults/{vault_address}

Get Specific Tokenized Vault APY

GET /tokenized_vaults/{vault_address}/annualized_apy

Get APY information for a specific tokenized vault by its contract address.

Path Parameters:

  • vault_address (required): The vault contract address

Get annualized APY

get

Calculate annualized APY for a specific vault.

    ⚠️ Deprecation Notice: 
    - The `hgETH30dLiquidAPY` and `hgETH7dLiquidAPY` fields are deprecated
    - These fields will be removed on 2026-01-01
    - Use `liquidAPY30Day` and `liquidAPY7Day` fields instead
    
    Supported Vaults: cUSDO, tETH, wstETH, rsETH
Path parameters
vault_addressstringRequired
Responses
200

APY data

application/json
Responseany
get
/tokenized_vaults/{vault_address}/annualized_apy

No content


Key Response Fields

Important fields in the responses:

  • address: Vault contract address

  • vault_name: Human-readable vault name

  • status: Current status (active or closed)

  • chain: Blockchain network ID

  • reported_apy: APY information including breakdown

  • rewards: Available reward multipliers

  • subaccounts: Associated strategist subaccounts

  • is_featured: Whether vault is prominently displayed

  • receipt_token_symbol: Symbol for vault receipt tokens


Status Values

  • active: Vault is operational and accepting deposits

  • closed: Vault is closed to new deposits


Usage Examples

Get all active vaults:

Get specific vault details:

Last updated