Slope Software Products API

The Products API from Slope Software — 1 operation(s) for products.

Operations 1

GET /api/v1/Products/{ProductId}/ModelPointFields Get all model point fields for a product. #

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/slope-software-products-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

slope-software-products-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Slope Arrays Products API
  version: '1.0'
servers:
- url: https://api.slopesoftware.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Products
paths:
  /api/v1/Products/{ProductId}/ModelPointFields:
    get:
      tags:
      - Products
      summary: Get all model point fields for a product.
      description: 'This endpoint will:

        - Validate the user has permission to view the model

        - Return all model point fields for the specified product

        - Support pagination with offset and limit

        - Support field filtering via the Fields parameter

        - Include Field Name, Field ID, Data Type, IsRequired flag, Scales flags, Default values, and Aliases'
      operationId: GetModelPointFields
      parameters:
      - name: ProductId
        in: path
        description: The ID of the product to get model point fields for.
        required: true
        schema:
          type: integer
          description: The ID of the product to get model point fields for
          format: int32
      - name: Fields
        in: query
        description: "Optional parameter to filter the top-level fields that are returned. \nThe list must be in CSV format. Example: field1,field2,field3"
        schema:
          type: string
      - name: Limit
        in: query
        description: Optional parameter to limit the number of items returned. Default is 200.
        schema:
          type: integer
          format: int32
      - name: Offset
        in: query
        description: Optional parameter to offset the items returned. Default is 0.
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/PaginatedResponseGetModelPointFieldsResponseItemV1'
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedResponseGetModelPointFieldsResponseItemV1'
            text/json:
              schema:
                $ref: '#/components/schemas/PaginatedResponseGetModelPointFieldsResponseItemV1'
        '404':
          description: Not Found
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '201':
          description: Created
        '400':
          description: Bad Request
        '403':
          description: Not Allowed To Access
        '429':
          description: Too Many Requests
        '401':
          description: Unauthorized
      security:
      - API Token: []
components:
  schemas:
    ModelPointFieldDefaultMethodType:
      enum:
      - None
      - DefinedValue
      type: string
    PaginatedResponseGetModelPointFieldsResponseItemV1:
      type: object
      properties:
        items:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/GetModelPointFieldsResponseItemV1'
          description: Items within the page
        offset:
          type:
          - integer
          - 'null'
          description: Offset to retrieve the next page. Null when there are no further records.
          format: int32
          readOnly: true
      additionalProperties: false
      description: Paginated response that will only return an offset if there are remaining pages
    FieldDataType:
      enum:
      - Integer
      - Decimal
      - String
      - Date
      - Invalid
      - Boolean
      - DataTable
      - DecrementTable
      - Dynamic
      - ScenarioTable
      - YieldCurve
      type: string
    ProblemDetails:
      type: object
      properties:
        type:
          type:
          - string
          - 'null'
        title:
          type:
          - string
          - 'null'
        status:
          type:
          - integer
          - 'null'
          format: int32
        detail:
          type:
          - string
          - 'null'
        instance:
          type:
          - string
          - 'null'
      additionalProperties: {}
    GetModelPointFieldsResponseItemV1:
      type: object
      properties:
        fieldId:
          type: integer
          format: int32
        fieldName:
          type:
          - string
          - 'null'
        dataType:
          $ref: '#/components/schemas/FieldDataType'
        isRequired:
          type: boolean
        scalesOnPurchaseOrSale:
          type: boolean
        defaultValueSource:
          $ref: '#/components/schemas/ModelPointFieldDefaultMethodType'
        defaultValue:
          type:
          - string
          - 'null'
        aliases:
          type:
          - array
          - 'null'
          items:
            type: string
        isSystemField:
          type: boolean
      additionalProperties: false
  securitySchemes:
    API_Token:
      type: http
      description: The API token received from the Authorize endpoint goes here.
      scheme: Bearer
      bearerFormat: JWT