HarborHarbor
DocumentationGuidesPlugins
All plugins

Twilio API

Twilio REST API for accounts and phone-number inspection

APICategory: commsPopularity 79twilio_api

Twilio REST API for accounts and phone-number inspection

Install

hrbr plugins install twilio-api

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

Quick start

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

Or from a Function:

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

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

Tools

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

hrbr plugins tools twilio-api

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