HarborHarbor
DocumentationGuidesPlugins
All plugins

Sentry API

Official Sentry REST API imported from Sentry's OpenAPI schema

APICategory: observabilityPopularity 89sentry_api

Official Sentry REST API imported from Sentry's OpenAPI schema

Install

hrbr plugins install sentry-api

Harbor calls https://sentry.io (driven by the upstream OpenAPI spec).

Quick start

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

Or from a Function:

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

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

Tools

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

hrbr plugins tools sentry-api

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