DealHub Metrics Reporting API

The MetricsReporting API from DealHub — 3 operation(s) for metricsreporting.

Operations 4

GET /metricsReporting/externalArrMetrics/{id} gets external arr metrics request for the provided id #
GET /metricsReporting/externalArrMetrics gets external arr metrics requests submitted #
POST /metricsReporting/externalArrMetrics submit request to generate external arr metrics #
PUT /metricsReporting/populateArrMetrics/subscriptions/{subscriptionId} submit request to generate/regenerate arr metrics for a subscription #

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/dealhub-metricsreporting-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

dealhub-metricsreporting-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.0
  title: Subskribe Metrics Reporting API
servers:
- url: https://api.app.subskribe.com
security:
- ApiKeyAuth: []
tags:
- name: MetricsReporting
paths:
  /metricsReporting/externalArrMetrics/{id}:
    get:
      tags:
      - MetricsReporting
      summary: gets external arr metrics request for the provided id
      description: returns the external arr metrics request for the provided id
      operationId: getExternalArrMetrics
      parameters:
      - name: id
        in: path
        description: id of the externalArrMetrics request
        required: true
        schema:
          type: string
      responses:
        default:
          description: successful operation
  /metricsReporting/externalArrMetrics:
    get:
      tags:
      - MetricsReporting
      summary: gets external arr metrics requests submitted
      description: returns the paginated list of external arr metrics requests
      operationId: getExternalArrMetrics_1
      parameters:
      - name: cursor
        in: query
        required: false
        schema:
          type: string
          format: uuid
      - name: limit
        in: query
        required: false
        schema:
          type: integer
          format: int32
      responses:
        default:
          description: successful operation
    post:
      tags:
      - MetricsReporting
      summary: submit request to generate external arr metrics
      description: returns the request with its captured id. Arr metrics will be generated as a backend job
      operationId: addExternalArrMetrics
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ExternalArrScheduleJson'
      responses:
        default:
          description: successful operation
  /metricsReporting/populateArrMetrics/subscriptions/{subscriptionId}:
    put:
      tags:
      - MetricsReporting
      summary: submit request to generate/regenerate arr metrics for a subscription
      description: returns 200 if the result is successfully submitted to a background task
      operationId: populateArrMetricsForSubscription
      parameters:
      - name: subscriptionId
        in: path
        description: id of the subscription
        required: true
        schema:
          type: string
      responses:
        default:
          description: successful operation
components:
  schemas:
    ExternalArrScheduleJson:
      type: object
      required:
      - amount
      - endDate
      - quantity
      - startDate
      properties:
        id:
          type: string
        externalId:
          type: string
        startDate:
          type: integer
          format: int64
        endDate:
          type: integer
          format: int64
        category:
          type: string
          enum:
          - OPENING_BALANCE
          - NEW
          - ADD_ON
          - RENEWAL_ADD_ON
          - UPSELL
          - MARKUP
          - RENEWAL_UPSELL
          - RENEWAL_MARKUP
          - DOWNSELL
          - MARKDOWN
          - RENEWAL_DOWNSELL
          - RENEWAL_MARKDOWN
          - TERMINATION
          - EXPIRATION
          - PENDING_RENEWAL
          - REACTIVATION
          - DEBOOK
        amount:
          type: number
        quantity:
          type: integer
          format: int64
        previousScheduleId:
          type: string
        metadata:
          type: string
        submittedBy:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key