Charthop stripe API

The stripe API from Charthop — 4 operation(s) for stripe.

Operations 4

GET /v1/stripe/plan Return all billing plans directly from Stripe (staff only) #
GET /v1/stripe/product Return all products directly from Stripe (staff only) #
GET /v1/stripe/product/{productId} Return a particular product by its Stripe id #
POST /v1/stripe/setup-intent Creates a Stripe setupIntent object and returns the secret for that object #

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/charthop-stripe-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

charthop-stripe-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: REST API for ChartHop
  version: V1.0.0
  title: ChartHop access Stripe API
  contact:
    name: ChartHop
    url: https://www.charthop.com
    email: support@charthop.com
servers:
- url: https://localhost
- url: http://localhost
tags:
- name: stripe
paths:
  /v1/stripe/plan:
    get:
      tags:
      - stripe
      summary: Return all billing plans directly from Stripe (staff only)
      operationId: findStripePlans
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultsPlan'
        '400':
          description: bad request
        '404':
          description: not found
  /v1/stripe/product:
    get:
      tags:
      - stripe
      summary: Return all products directly from Stripe (staff only)
      operationId: findStripeProducts
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultsStripeProduct'
        '400':
          description: bad request
        '404':
          description: not found
  /v1/stripe/product/{productId}:
    get:
      tags:
      - stripe
      summary: Return a particular product by its Stripe id
      operationId: getStripeProduct
      parameters:
      - name: productId
        in: query
        description: Stripe product id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StripeProduct'
        '400':
          description: bad request
        '404':
          description: not found
  /v1/stripe/setup-intent:
    post:
      tags:
      - stripe
      summary: Creates a Stripe setupIntent object and returns the secret for that object
      operationId: getSetupIntent
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SetupIntent'
        '400':
          description: bad request
        '404':
          description: not found
components:
  schemas:
    Plan:
      type: object
      required:
      - id
      - name
      - interval
      - intervalCount
      - tiers
      - stripeProductId
      properties:
        id:
          type: string
          description: unique Stripe identifier for this plan
        name:
          type: string
          description: human-readable nickname for this plan
        interval:
          type: string
          description: interval for billing on this plan
          enum:
          - DAY
          - WEEK
          - MONTH
          - YEAR
        intervalCount:
          type: integer
          format: int32
          description: number of intervals, for example 3 for quarterly billing
        tiers:
          type: array
          description: pricing tiers, per employee per interval
          items:
            $ref: '#/components/schemas/PlanTier'
        stripeProductId:
          type: string
          description: stripe product id that this plan belongs to
    StripeProduct:
      type: object
      required:
      - stripeId
      - label
      properties:
        stripeId:
          type: string
          description: unique Stripe identifier for this product
        label:
          type: string
          description: human-readable nickname for this product
    ResultsStripeProduct:
      type: object
      required:
      - data
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/StripeProduct'
        next:
          type: string
    ResultsPlan:
      type: object
      required:
      - data
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Plan'
        next:
          type: string
    PlanTier:
      type: object
      required:
      - unitAmount
      properties:
        upTo:
          type: integer
          format: int64
          description: headcount up to this level is charged at the below rate
        unitAmount:
          type: number
          description: PEPM rate
    SetupIntent:
      type: object
      required:
      - clientSecret
      properties:
        clientSecret:
          type: string
          description: Secret of setup_intent object created
          example: st_ersasdfasdf