Skip to main content
GET
/
api
/
v1
/
staking
/
products
/
{id}
Get staking product detail
curl --request GET \
  --url https://api.example.com/api/v1/staking/products/{id}
{
  "code": 0,
  "msg": "ok",
  "data": {
    "id": "base_usdc_nexfi_vault",
    "name": "NexFi USDC Yield Vault",
    "productType": "vault",
    "chainId": 8453,
    "apy": "7.25",
    "tvlUsd": "1200000",
    "riskLevel": "medium",
    "rewardSource": "Vault strategy yield",
    "lockRule": "No hard lock",
    "exitRule": "ERC-4626 redeem",
    "status": "active"
  }
}

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.

Path Parameters

id
string
required

Product ID.

Example:

"base_usdc_nexfi_vault"

Response

200 - application/json

Product detail 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

Staking product detail payload.