HarborHarbor
DocumentationGuidesPlugins
All plugins

Stripe API

Official Stripe API imported from Stripe's OpenAPI spec

APICategory: dataPopularity 95stripe_api

Official Stripe API imported from Stripe's OpenAPI spec

Install

hrbr plugins install stripe-api

Harbor calls https://api.stripe.com (driven by the upstream OpenAPI spec).

Quick start

hrbr exec 'return await stripe_api.get({ /* see schema */ })'

Or from a Function:

import { defineOrbitJob } from "@hrbr/orbit";

export default defineOrbitJob({
  name: "stripe-api-example",
  handler: async (ctx) => {
    return await ctx.plugins.stripe_api.list({ limit: 5 });
  },
});

Tools

Tools are generated from the upstream OpenAPI spec. Inspect with:

hrbr plugins tools stripe-api

Or open the dashboard plugin page for the live tool list.