DealHub Email API

The Email API from DealHub — 1 operation(s) for email.

Operations 4

GET /emailSettings Fetch the email settings #
POST /emailSettings Add a new email setting #
PUT /emailSettings Update an existing email setting #
DELETE /emailSettings Delete an email setting #

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-email-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-email-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.0
  title: Subskribe Email API
servers:
- url: https://api.app.subskribe.com
security:
- ApiKeyAuth: []
tags:
- name: Email
paths:
  /emailSettings:
    get:
      tags:
      - Email
      summary: Fetch the email settings
      description: Returns a list of email settings
      operationId: getEmailSettings
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/EmailSetting'
    post:
      tags:
      - Email
      summary: Add a new email setting
      description: ''
      operationId: addEmailSetting
      requestBody:
        $ref: '#/components/requestBodies/EmailSetting'
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmailSetting'
    put:
      tags:
      - Email
      summary: Update an existing email setting
      description: ''
      operationId: updateEmailSetting
      requestBody:
        $ref: '#/components/requestBodies/EmailSetting'
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmailSetting'
    delete:
      tags:
      - Email
      summary: Delete an email setting
      description: ''
      operationId: deleteEmailSetting
      requestBody:
        $ref: '#/components/requestBodies/EmailSetting'
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmailSetting'
components:
  schemas:
    EmailSetting:
      type: object
      required:
      - ccEmail
      - ccEmailType
      properties:
        entityId:
          type: string
          readOnly: true
        ccEmail:
          type: string
          readOnly: true
          minLength: 0
          maxLength: 255
        ccEmailType:
          type: string
          readOnly: true
          enum:
          - INVOICE_POSTED
          - CREDIT_MEMO_AVAILABLE
          - HUBSPOT_ERROR
          - DUNNING
          - APPROVAL_FLOW
          - ESIGN
          - LOGIN_LINK
          - NOTIFICATION
        createdOn:
          type: integer
          format: int64
          readOnly: true
        updatedOn:
          type: integer
          format: int64
          readOnly: true
  requestBodies:
    EmailSetting:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/EmailSetting'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key