DealHub Rate Card API

The RateCard API from DealHub — 5 operation(s) for ratecard.

Operations 6

PUT /ratecards/{id}/csv create a rate card using CSV price table multipart form data #
GET /ratecards Fetch the list of rate cards stored in the system #
POST /ratecards/csv create a rate card using CSV price table multipart form data #
GET /ratecards/attributes/csv Fetch the price attributes defined in the system in CSV format #
POST /ratecards/attributes/csv Import price attributes into the system #
GET /ratecards/{id}/priceTable Fetch the price table for the rate card given the id #

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-ratecard-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-ratecard-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.0
  title: Subskribe Rate Card API
servers:
- url: https://api.app.subskribe.com
security:
- ApiKeyAuth: []
tags:
- name: RateCard
paths:
  /ratecards/{id}/csv:
    put:
      tags:
      - RateCard
      summary: create a rate card using CSV price table multipart form data
      description: create a rate card using the multipart form data, where a CSV can be passed in for the price table
      operationId: updateRateCardCsv
      parameters:
      - name: id
        in: path
        description: rate card id
        required: true
        schema:
          type: string
      requestBody:
        $ref: '#/components/requestBodies/updateRateCardCsv'
      responses:
        default:
          description: successful operation
  /ratecards:
    get:
      tags:
      - RateCard
      summary: Fetch the list of rate cards stored in the system
      description: Fetch the list of rate cards stored in the system
      operationId: getRateCards
      responses:
        default:
          description: successful operation
  /ratecards/csv:
    post:
      tags:
      - RateCard
      summary: create a rate card using CSV price table multipart form data
      description: create a rate card using the multipart form data, where a CSV can be passed in for the price table
      operationId: addRateCardCsv
      requestBody:
        $ref: '#/components/requestBodies/updateRateCardCsv'
      responses:
        default:
          description: successful operation
  /ratecards/attributes/csv:
    get:
      tags:
      - RateCard
      summary: Fetch the price attributes defined in the system in CSV format
      description: Get all the price attributes in the system in CSV format one per row
      operationId: getPriceAttributesCsv
      responses:
        default:
          description: successful operation
    post:
      tags:
      - RateCard
      summary: Import price attributes into the system
      description: Import the price attributes from an input CSV file, the output provides details on each row of the input
      operationId: importPriceAttributes
      requestBody:
        $ref: '#/components/requestBodies/uploadApprovalMatrixCSV'
      responses:
        default:
          description: successful operation
  /ratecards/{id}/priceTable:
    get:
      tags:
      - RateCard
      summary: Fetch the price table for the rate card given the id
      description: Get the price table for the rate card given the id
      operationId: getRateCardPriceTable
      parameters:
      - name: id
        in: path
        description: rate card id
        required: true
        schema:
          type: string
      responses:
        default:
          description: successful operation
components:
  requestBodies:
    uploadApprovalMatrixCSV:
      content:
        multipart/form-data:
          schema:
            type: object
            properties:
              file:
                type: string
                format: binary
    updateRateCardCsv:
      content:
        multipart/form-data:
          schema:
            type: object
            properties:
              name:
                type: string
              description:
                type: string
              currency:
                type: string
              file:
                type: string
                format: binary
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key