Nexus Mutual · Example Payload

Get Pricing

Decentralized InsuranceDeFiEthereumSmart Contract CoverCrypto InsuranceProtocol ProtectionStakingClaims

Get Pricing is an example object payload from Nexus Mutual, with 3 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

summaryrequestresponse

Example Payload

Raw ↑
{
  "summary": "Get pricing data for product 1 across all staking pools",
  "request": {
    "method": "GET",
    "url": "https://api.nexusmutual.io/v2/pricing/products/1",
    "parameters": {}
  },
  "response": {
    "status": 200,
    "body": {
      "productId": 1,
      "pricePerPool": [
        {
          "poolId": 1,
          "targetPrice": 250
        },
        {
          "poolId": 2,
          "targetPrice": 350
        }
      ],
      "weightedAveragePrice": 300
    }
  }
}