Slope Software Reports API

The Reports API from Slope Software — 2 operation(s) for reports.

Operations 2

POST /api/v1/Reports/Workbooks/{workbookId}/Generate Start a workbook report generation. Use the returned URL to check the status of the report generation. #
GET /api/v1/Reports/Workbooks/Status/{generationId} Get workbook report generation status. If successful, then a URL will be available to download the report. #

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-reports-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-reports-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Slope Arrays Reports API
  version: '1.0'
servers:
- url: https://api.slopesoftware.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Reports
paths:
  /api/v1/Reports/Workbooks/{workbookId}/Generate:
    post:
      tags:
      - Reports
      summary: Start a workbook report generation. Use the returned URL to check the status of the report generation.
      operationId: GenerateWorkbookReport
      parameters:
      - name: workbookId
        in: path
        description: Workbook ID
        required: true
        schema:
          type: string
          description: Workbook ID
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GenerateWorkbookReportRequestV1'
          text/json:
            schema:
              $ref: '#/components/schemas/GenerateWorkbookReportRequestV1'
          application/*+json:
            schema:
              $ref: '#/components/schemas/GenerateWorkbookReportRequestV1'
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenerateWorkbookReportResponseV1'
        '200':
          description: Success
        '400':
          description: Bad Request
        '403':
          description: Not Allowed To Access
        '429':
          description: Too Many Requests
        '404':
          description: Not Found
        '401':
          description: Unauthorized
      security:
      - API Token: []
  /api/v1/Reports/Workbooks/Status/{generationId}:
    get:
      tags:
      - Reports
      summary: Get workbook report generation status. If successful, then a URL will be available to download the report.
      operationId: GetWorkbookReportGenerationStatus
      parameters:
      - name: generationId
        in: path
        description: Generation ID
        required: true
        schema:
          type: string
          description: Generation ID
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetWorkbookReportGenerationStatusResponseV1'
        '201':
          description: Created
        '400':
          description: Bad Request
        '403':
          description: Not Allowed To Access
        '429':
          description: Too Many Requests
        '404':
          description: Not Found
        '401':
          description: Unauthorized
      security:
      - API Token: []
components:
  schemas:
    GenerateWorkbookReportResponseV1:
      type: object
      properties:
        generationId:
          type:
          - string
          - 'null'
          description: Generation ID
        reportStatusUrl:
          type:
          - string
          - 'null'
          description: The status URL to use with the generation ID.
      additionalProperties: false
    GenerateWorkbookReportRequestV1:
      type: object
      properties:
        elementId:
          type:
          - string
          - 'null'
          description: Workbook Element ID
        reportFormat:
          $ref: '#/components/schemas/WorkbookReportFormatType'
        rowLimit:
          type:
          - integer
          - 'null'
          description: Row Limit
          format: int32
        offset:
          type:
          - integer
          - 'null'
          description: Offset
          format: int32
        parameters:
          type:
          - object
          - 'null'
          additionalProperties:
            type:
            - string
            - 'null'
          description: Parameters
      additionalProperties: false
    WorkbookReportFormatType:
      enum:
      - Csv
      - Excel
      - Png
      type: string
    ReportGenerationStatus:
      enum:
      - Running
      - Completed
      - Failed
      type: string
    GetWorkbookReportGenerationStatusResponseV1:
      type: object
      properties:
        status:
          $ref: '#/components/schemas/ReportGenerationStatus'
        downloadUrl:
          type:
          - string
          - 'null'
          description: Download URL
        message:
          type:
          - string
          - 'null'
          description: Message
      additionalProperties: false
  securitySchemes:
    API_Token:
      type: http
      description: The API token received from the Authorize endpoint goes here.
      scheme: Bearer
      bearerFormat: JWT