Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Developer Tools / HireFire API
HireFire API logo

HireFire API

✓ Official Vendor SpecDeveloper ToolsMonitoring Observabilitybearer38 EndpointsREST

For Agents

Configure Heroku dyno autoscaling rules, manage organizations and applications, and set up alert recipients for HireFire-managed scaling events.

Use for: I want to set up autoscaling for my Heroku web dynos, List all applications connected to my HireFire organization, Create a new manager rule that scales workers based on queue depth, Retrieve the current memberships in a specific organization

Not supported: Does not handle deployments, log aggregation, or APM metrics - use for Heroku dyno autoscaling configuration only.

HireFire automates dyno scaling for Heroku applications based on web request queue time and worker job metrics. The API exposes management of organizations, accounts, applications, managers (autoscaling rules), recipients (alert targets), and time ranges so platform teams can configure when and how dynos scale up or down. It supports memberships and users for team-based access to scaling policies across multiple Heroku accounts.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the HireFire API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the HireFire API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fhirefire.io%2Fhirefire" | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fhirefire.io%2Fhirefire" | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with HireFire API.

Configure web and worker autoscaling managers for Heroku applications with custom thresholds

Add and remove Heroku accounts, applications, and team memberships under a HireFire organization

Create alert recipients to receive notifications when scaling events trigger or thresholds breach

Schedule active time ranges that gate when autoscaling rules are allowed to fire

Audit organization users, memberships, and per-application manager configuration

Use Cases

Patterns agents use HireFire API for, with concrete tasks.

★ Heroku Web Dyno Autoscaling

Platform engineers connect Heroku applications to HireFire and create manager rules that scale web dynos up or down based on request queue time. The API lets agents register the application, attach a manager with target metrics, and confirm the manager is active before traffic events. Setup typically takes minutes per app once the Heroku account is linked.

Create a HireFire manager for application id app_123 with web dyno scaling between 1 and 10 dynos and verify the manager is enabled.

Worker Queue Autoscaling

Background-job heavy services use HireFire to scale Sidekiq, Resque, or custom worker dynos based on job queue length. The API exposes worker-type managers separately from web managers so different queues can scale independently. This avoids over-provisioning idle workers and reduces Heroku spend on bursty workloads.

List all worker-type managers attached to application id app_456 and update the maximum dyno count to 20.

Scaling Alerts and Recipients

Operations teams need notification when scaling events occur or when an application hits its dyno ceiling. HireFire recipients let teams attach email destinations to organizations so on-call engineers see scaling activity in real time. The API supports listing, adding, and removing recipients without touching Heroku itself.

Add ops@example.com as a recipient on organization org_789 and confirm the recipient appears in the recipients list.

Agent-Driven Heroku Cost Control

An AI agent connected via Jentic monitors Heroku spend and dyno utilization, then adjusts HireFire manager thresholds when traffic patterns shift. The agent loads HireFire operations on demand, updates min/max dyno settings, and confirms changes through the API. Credentials stay in your Jentic One instance so the agent never holds the bearer token directly.

Reduce the maximum dyno count on application id app_999 from 15 to 8 during a low-traffic time range and verify the update succeeded.

Key Endpoints

38 endpoints — hirefire automates dyno scaling for heroku applications based on web request queue time and worker job metrics.

METHOD

PATH

DESCRIPTION

GET

/organizations

List organizations

GET

/organizations/{id}/users

List users in an organization

POST

/memberships

Create a membership

GET

/organizations/{id}/memberships

List memberships in an organization

GET

/organizations

List organizations

GET

/organizations/{id}/users

List users in an organization

POST

/memberships

Create a membership

GET

/organizations/{id}/memberships

List memberships in an organization

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring the HireFire API by hand means managing a bearer token for the Authorization header and walking its nested organization, membership, and application resources. Through Jentic you install once, import the HireFire API from the API Directory, store the token once, and your agent calls it.

Permission scoping

Permission scoping

HireFire puts the organization id in the URL path (/organizations/{id}/users, /organizations/{id}/memberships), so a rule can pin your agent to one organization and the operations around it. You choose the operations it may call, so destructive ones like deleting an organization or an application are not included unless you add them.

Credential management

Credential isolation

Your HireFire bearer token is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'configure Heroku dyno autoscaling', and Jentic returns the matching HireFire operation with its input schema so the agent calls the right endpoint without reading the reference docs.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

New Relic API

→

Application performance monitoring that pairs with HireFire scaling decisions

Choose New Relic when the agent needs APM metrics or alerts; use HireFire for the actual dyno scaling action.

Alternative

Render API

→

Render manages compute and autoscaling natively for apps not on Heroku

Choose Render when the workload is not on Heroku and you want platform-native autoscaling instead of a HireFire-style add-on.

Complementary

CircleCI API

→

CI/CD pipeline triggers that drive Heroku deployments managed by HireFire

Choose CircleCI when the agent needs to trigger or inspect deploys; HireFire handles scaling once the deploy lands.

FAQs

Specific to using HireFire API through Jentic.

What authentication does the HireFire API use?

The HireFire API uses bearer token authentication. The API key is passed as a Bearer token in the Authorization header on every request. Through Jentic, the bearer token is stored encrypted in your Jentic One instance and injected at execution time so agents never see the raw key.

Can I configure worker dyno autoscaling with the HireFire API?

Yes. The HireFire API exposes manager resources that attach to either web or worker dyno types on a Heroku application. POST a manager with the worker dyno name and your min/max dyno bounds to scale background-job processes independently from web dynos.

What are the rate limits for the HireFire API?

HireFire does not publish hard rate limits in its OpenAPI spec, but recommends staying below a few requests per second per organization. If you hit limiting, the API returns 429 responses; back off and retry. For agent workloads through Jentic, batch reads via GET /organizations/{id}/applications rather than polling individual managers.

How do I create a manager for a Heroku app through Jentic?

Search Jentic for 'configure heroku autoscaling manager', load the POST /organizations operation chain, then call the manager creation endpoint with the application id and dyno bounds. Run pip install jentic and use SearchRequest, LoadRequest, ExecutionRequest from the async client to wire this up in under an hour.

Does the HireFire API support time-based scaling rules?

Yes. The API exposes time range resources that gate when managers are allowed to fire. You can create overlapping time ranges (for example, weekday business hours versus weekend) and attach different scaling thresholds to each, all through CRUD operations on the time range endpoints.

GET STARTED

Start building with HireFire API

Explore with Jentic
View OpenAPI Document