HarborHarbor
DocumentationGuidesPlugins
All plugins

Resend API

Inspect domains and API key state via the Resend REST API

APICategory: commsPopularity 68resend_api

Inspect domains and API key state via the Resend REST API

Install

hrbr plugins install resend-api

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

Quick start

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

Or from a Function:

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

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

Tools

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

hrbr plugins tools resend-api

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