Nexus Mutual Pricing API

The Pricing API from Nexus Mutual — 1 operation(s) for pricing.

Operations 1

GET /v2/pricing/products/{productId}

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/nexus-mutual-pricing-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

nexus-mutual-pricing-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Cover Router Capacity Pricing API
  version: 2.4.1
servers:
- url: http://127.0.0.1:3000
  description: Local server
- url: https://api.staging.nexusmutual.io/
  description: Staging server
- url: https://api.nexusmutual.io/
  description: Production server
tags:
- name: Pricing
paths:
  /v2/pricing/products/{productId}:
    get:
      tags:
      - Pricing
      description: Get pricing data for a specific product
      parameters:
      - in: path
        name: productId
        required: true
        schema:
          type: integer
          description: The product id
      responses:
        '200':
          description: Returns pricing data of every pool that has capacity for the given product
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PricingResult'
              example:
                productId: 1
                pricePerPool:
                - poolId: 1
                  targetPrice: 250
                - poolId: 2
                  targetPrice: 350
                weightedAveragePrice: 300
        '400':
          description: Invalid productId
        '404':
          description: Product not found
        '500':
          description: Internal Server Error
components:
  schemas:
    PricingResult:
      type: object
      properties:
        productId:
          type: integer
          description: The product id
        pricePerPool:
          type: array
          description: Array of pricing data per pool
          items:
            $ref: '#/components/schemas/PoolPricing'
        weightedAveragePrice:
          type: integer
          description: The weighted average price across all pools as a percentage expressed as basis (0-10,000)
    PoolPricing:
      type: object
      properties:
        poolId:
          type: integer
          description: The pool id
        targetPrice:
          type: integer
          description: The target price as a percentage expressed as basis points (0-10,000)