SS&C Geneva NAV API

Net Asset Value calculation and reporting

Operations 1

GET /portfolios/{portfolioId}/nav Get NAV for a portfolio #

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/ssc-geneva-nav-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

ssc-geneva-nav-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SS&C Geneva Fund Accounting Investors NAV API
  description: SS&C Geneva provides fund accounting and portfolio management APIs for asset managers, hedge funds, and fund administrators. APIs enable NAV calculation, trade processing, investor accounting, position management, and regulatory reporting across multi-asset portfolios. Geneva is an enterprise system with REST APIs for integration with external systems.
  version: '1.0'
  contact:
    name: SS&C Technologies Support
    url: https://www.ssctech.com/about/support-client-portals
  license:
    name: SS&C Geneva License Agreement
    url: https://www.ssctech.com/about/privacy
servers:
- url: https://api.ssctech.example.com/geneva/v1
  description: SS&C Geneva API (tenant-specific URL)
security:
- BearerAuth: []
- BasicAuth: []
tags:
- name: NAV
  description: Net Asset Value calculation and reporting
paths:
  /portfolios/{portfolioId}/nav:
    get:
      operationId: getPortfolioNAV
      summary: Get NAV for a portfolio
      description: Returns the Net Asset Value (NAV) calculation for a portfolio on a specified date, including per-share/unit NAV, total NAV, and component breakdown.
      tags:
      - NAV
      parameters:
      - $ref: '#/components/parameters/PortfolioId'
      - name: navDate
        in: query
        required: true
        schema:
          type: string
          format: date
        example: '2026-03-17'
      - name: navType
        in: query
        schema:
          type: string
          enum:
          - OFFICIAL
          - ESTIMATED
          - PRELIMINARY
          default: OFFICIAL
      responses:
        '200':
          description: NAV calculation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NAVReport'
        '404':
          description: NAV not calculated for specified date
components:
  parameters:
    PortfolioId:
      name: portfolioId
      in: path
      required: true
      description: Geneva portfolio identifier
      schema:
        type: string
      example: FUND-001
  schemas:
    NAVReport:
      type: object
      properties:
        portfolioId:
          type: string
        navDate:
          type: string
          format: date
        navType:
          type: string
          enum:
          - OFFICIAL
          - ESTIMATED
          - PRELIMINARY
        totalNAV:
          type: number
          description: Total NAV in base currency
        navPerUnit:
          type: number
          description: NAV per share/unit
        unitsOutstanding:
          type: number
        baseCurrency:
          type: string
        components:
          type: object
          properties:
            longPositions:
              type: number
            shortPositions:
              type: number
            cashAndEquivalents:
              type: number
            accruedIncome:
              type: number
            liabilities:
              type: number
        performanceReturn:
          type: object
          properties:
            mtdReturn:
              type: number
            ytdReturn:
              type: number
            sinceInceptionReturn:
              type: number
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    BasicAuth:
      type: http
      scheme: basic