Standard Metrics funds API

The funds API from Standard Metrics — 1 operation(s) for funds.

Operations 1

GET /funds/ Get funds #

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/standard-metrics-funds-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

standard-metrics-funds-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: OAuth Token budgets Funds API
  version: 1.0.0
  description: Token endpoint using client credentials flow.
servers:
- url: https://api.standardmetrics.io
tags:
- name: funds
paths:
  /funds/:
    get:
      tags:
      - funds
      summary: Get funds
      description: 'Retrieve all funds associated with the firm. Provides fund details and status information.


        **Permissions:**

        - User must be authenticated via OAuth.'
      operationId: funds_list
      parameters:
      - name: page
        in: query
        description: A page number within the paginated result set.
        schema:
          type: integer
      - name: page_size
        in: query
        description: Number of results to return per page.
        schema:
          type: integer
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                required:
                - count
                - results
                type: object
                properties:
                  count:
                    type: integer
                  next:
                    type:
                    - string
                    - 'null'
                    format: uri
                  previous:
                    type:
                    - string
                    - 'null'
                    format: uri
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/Fund'
components:
  schemas:
    Fund:
      required:
      - currency
      - id
      - name
      - size
      - vintage
      type: object
      properties:
        id:
          title: Id
          type: string
        name:
          title: Name
          minLength: 1
          type: string
        size:
          title: Size
          type: string
          format: decimal
        vintage:
          title: Vintage
          type: integer
        currency:
          title: Currency
          minLength: 1
          type: string
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic