Skip to main content
GET
/
api
/
v1
/
staking
/
products
Get staking products
curl --request GET \
  --url https://api.example.com/api/v1/staking/products
{
  "code": 0,
  "msg": "ok",
  "data": {
    "items": [
      {
        "id": "base_usdc_nexfi_vault",
        "name": "NexFi USDC Yield Vault",
        "productType": "vault",
        "chainId": 8453,
        "assetSymbol": "USDC",
        "apy": "7.25",
        "tvlUsd": "1200000",
        "riskLevel": "medium",
        "status": "active",
        "tags": [
          "Stable",
          "Featured"
        ]
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.nexfi.robert.dpdns.org/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

chainId
integer

Chain ID filter.

Example:

8453

productType
string

Product type filter, such as aggregated or vault.

Example:

"vault"

riskLevel
string

Risk level filter.

Example:

"medium"

assetSymbol
string

Subscription asset symbol.

Example:

"USDC"

status
string

Product status filter.

Example:

"active"

Response

200 - application/json

Product list response

Standard response envelope.

code
integer
required

Business status code. 0 means success.

Example:

0

msg
string
required

Human-readable response message.

Example:

"ok"

data
object