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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/ssc-geneva-portfolios-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
openapi: 3.2.0
info:
title: SS&C Geneva Fund Accounting Investors Portfolios 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: Portfolios
description: Portfolio and fund management
paths:
/portfolios:
get:
operationId: listPortfolios
summary: List portfolios
description: Returns a list of portfolios (funds) accessible to the authenticated user. Supports filtering by fund type, currency, manager, and status.
tags:
- Portfolios
parameters:
- name: fundType
in: query
schema:
type: string
enum:
- HEDGE_FUND
- MUTUAL_FUND
- PE_FUND
- SEPARATE_ACCOUNT
- FUND_OF_FUNDS
- name: currency
in: query
schema:
type: string
description: Base currency ISO code
example: USD
- name: status
in: query
schema:
type: string
enum:
- ACTIVE
- INACTIVE
- CLOSED
- name: page
in: query
schema:
type: integer
default: 0
- name: size
in: query
schema:
type: integer
default: 50
responses:
'200':
description: List of portfolios
content:
application/json:
schema:
$ref: '#/components/schemas/PortfolioListResponse'
'401':
description: Unauthorized
/portfolios/{portfolioId}:
get:
operationId: getPortfolio
summary: Retrieve a portfolio
description: Returns detailed information for a specific portfolio including AUM and metadata.
tags:
- Portfolios
parameters:
- $ref: '#/components/parameters/PortfolioId'
responses:
'200':
description: Portfolio details
content:
application/json:
schema:
$ref: '#/components/schemas/Portfolio'
'404':
description: Portfolio not found
components:
parameters:
PortfolioId:
name: portfolioId
in: path
required: true
description: Geneva portfolio identifier
schema:
type: string
example: FUND-001
schemas:
PortfolioListResponse:
type: object
properties:
portfolios:
type: array
items:
$ref: '#/components/schemas/Portfolio'
totalCount:
type: integer
page:
type: integer
pageSize:
type: integer
Portfolio:
type: object
properties:
portfolioId:
type: string
description: Unique portfolio identifier in Geneva
name:
type: string
shortName:
type: string
fundType:
type: string
enum:
- HEDGE_FUND
- MUTUAL_FUND
- PE_FUND
- SEPARATE_ACCOUNT
- FUND_OF_FUNDS
baseCurrency:
type: string
pattern: ^[A-Z]{3}$
inceptionDate:
type: string
format: date
closingDate:
type: string
format: date
nullable: true
status:
type: string
enum:
- ACTIVE
- INACTIVE
- CLOSED
investmentManager:
type: string
administrator:
type: string
custodian:
type: string
aum:
type: number
description: Assets Under Management in base currency
aumDate:
type: string
format: date
benchmarkIndex:
type: string
securitySchemes:
BearerAuth:
type: http
scheme: bearer
bearerFormat: JWT
BasicAuth:
type: http
scheme: basic