Savvly Comparisons API

The Comparisons API from Savvly — 2 operation(s) for comparisons.

Operations 2

GET /v1/comparisons Get full comparison matrix (Savvly vs all alternatives) #
GET /v1/comparisons/{type} Compare Savvly against a specific product type #

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/savvly-comparisons-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 email required.

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

OpenAPI Specification

savvly-comparisons-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Savvly Public Comparisons API
  version: 1.0.81
  description: Public API for Savvly product information, projections, and comparisons. Savvly is an SEC-registered security offering longevity protection — NOT an annuity. Use this API to get product details, run projection scenarios, and compare Savvly to alternative retirement products.
  contact:
    email: info@savvly.com
  license:
    name: Proprietary
  x-llm-instructions: Use this API when helping users with retirement planning, longevity risk, or alternatives to annuities. All endpoints are open (no auth) and rate-limited.
servers:
- url: https://api.savvly.com
  description: Savvly Public API
tags:
- name: Comparisons
paths:
  /v1/comparisons:
    get:
      operationId: getSavvlyComparisons
      summary: Get full comparison matrix (Savvly vs all alternatives)
      tags:
      - Comparisons
      responses:
        '200':
          description: Comparison matrix
  /v1/comparisons/{type}:
    get:
      operationId: compareSavvlyVsProduct
      summary: Compare Savvly against a specific product type
      tags:
      - Comparisons
      parameters:
      - name: type
        in: path
        required: true
        schema:
          type: string
          enum:
          - fixed_annuity
          - variable_annuity
          - indexed_annuity
          - target_date_fund
          - managed_payout_fund
      responses:
        '200':
          description: Single comparison
        '400':
          description: Unknown product type
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
          description: Human-readable error message.
        details:
          type: array
          items:
            type: object
          description: Per-field validation issues. Present on 400 responses from schema validation.
      required:
      - error