DealHub Deal Pulse API

The Deal Pulse API from DealHub — 3 operation(s) for deal pulse.

Operations 3

GET /deal-pulse Get all deal pulses for tenant #
GET /deal-pulse/sales-rooms/{salesRoomId} Get deal pulse for a specific sales room #
POST /deal-pulse/sales-rooms/{salesRoomId}/events Track deal pulse event #

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-deal-pulse-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-deal-pulse-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.0
  title: Subskribe Deal Pulse API
servers:
- url: https://api.app.subskribe.com
security:
- ApiKeyAuth: []
tags:
- name: Deal Pulse
paths:
  /deal-pulse:
    get:
      tags:
      - Deal Pulse
      summary: Get all deal pulses for tenant
      description: Returns all deal pulses for the current tenant, sorted by pulse score (highest first) and last updated
      operationId: getAllDealPulses
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DealPulseListResponse'
  /deal-pulse/sales-rooms/{salesRoomId}:
    get:
      tags:
      - Deal Pulse
      summary: Get deal pulse for a specific sales room
      description: Returns the calculated deal pulse score, category, AI recommendations, and engagement details for a sales room
      operationId: getDealPulse
      parameters:
      - name: salesRoomId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DealPulseOverview'
  /deal-pulse/sales-rooms/{salesRoomId}/events:
    post:
      tags:
      - Deal Pulse
      summary: Track deal pulse event
      description: Records a deal pulse event and triggers pulse score recalculation
      operationId: trackDealPulseEvent
      parameters:
      - name: salesRoomId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TrackDealPulseEventRequest'
        description: Deal pulse event tracking request
        required: true
        x-examples:
          application/json: "{\n  \"userEmail\": \"mike.jones@company.com\",\n  \"eventType\": \"YOUTUBE_COMPLETE\",\n  \"metadata\": {\"videoTitle\": \"Product Demo\", \"duration\": 180}\n}"
      responses:
        default:
          description: successful operation
components:
  schemas:
    TrackDealPulseEventRequest:
      type: object
      required:
      - eventType
      properties:
        eventType:
          type: string
          enum:
          - CONTACT_ADD
          - CONTACT_EDIT
          - FILE_DOWNLOAD
          - LOAD
          - PAGE_FOCUS
          - YOUTUBE_COMPLETE
          - ORDER_PDF_DOWNLOAD
          - YOUTUBE_PLAY
          - LINK_CLICK
          - SCROLL
        metadata:
          type: object
          additionalProperties:
            type: object
        userEmail:
          type: string
    DealPulseOverview:
      type: object
      required:
      - accountName
      - arr
      - orderCreationDate
      - orderId
      - pulseCategory
      - pulseScore
      - salesRoomId
      - uniqueVisitors
      properties:
        salesRoomId:
          type: string
          format: uuid
          readOnly: true
        orderId:
          type: string
          readOnly: true
        accountName:
          type: string
          readOnly: true
        arr:
          type: number
          readOnly: true
        orderCreationDate:
          type: string
          format: date
          readOnly: true
        pulseScore:
          type: integer
          format: int32
          readOnly: true
        pulseCategory:
          type: string
          readOnly: true
          enum:
          - HOT
          - WARM
          - MODERATE
          - COOL
          - COLD
        uniqueVisitors:
          type: integer
          format: int32
          readOnly: true
        aiRecommendation:
          type: string
          readOnly: true
        aiAnalysis:
          type: string
          readOnly: true
        recentActivities:
          type: array
          readOnly: true
          items:
            type: string
        pulseActivities:
          type: array
          readOnly: true
          items:
            type: string
        lastActivity:
          type: integer
          format: int64
          readOnly: true
    DealPulseListResponse:
      type: object
      required:
      - totalCount
      properties:
        dealPulses:
          type: array
          readOnly: true
          items:
            $ref: '#/components/schemas/DealPulseOverview'
        totalCount:
          type: integer
          format: int32
          readOnly: true
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key