Product
Jentic OSThe workplace. An in-house AI platform for every employeeJentic OneSafe access. Agents reach your systems without holding keysJentic AIRThe foundation. Gets your existing platforms ready for AI
Pricing
Developers

GET STARTED

API DirectoryBrowse 10,000+ APIs Ready For AI Agent IntegrationDocumentationGuides and API reference

TOOLS

API ScoringCheck your AI Readiness using our scorecardArazzo UIVisualize Arazzo Workflows As Interactive DocumentationArazzo EditorBuild And Edit Multi-Step API Workflows Visually

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Try it now
Jentic OSJentic OneJentic AIR
Pricing
API DirectoryDocumentationAPI ScoringArazzo UIArazzo EditorGitHubOpen Standards
Resources
About UsCareersContact
Try it now
JenticJentic
Products
  • Jentic OS
  • Jentic One
  • Jentic AIR
For Developers
  • API Directory
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient SecurityISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

AICPA SOC for Service Organizations logoAICPA SOC for Service Organizations logo

SOC 2® Type 1 report

Audited by Prescient Assurance

Terms & Conditions•Privacy Policy•
© 2026 Jentic Technology Ltd. All rights reserved.
2 Grattan Court East, Dublin, D02 VX86, Ireland
Switch to light modeSwitch to dark mode
APIs / Payments / Metronome
Metronome logo

Metronome

43
AI ReadinessNon-Ready (D-)43/100
See full scorecard
Official vendor OpenAPI document · agent-readyPaymentsBilling Subscriptionsbearer132 EndpointsREST

For Agents

Ingest product usage events, compute billable metrics, manage rate cards and contracts, and produce invoices for consumption-based pricing programs.

Use for: I need to ingest a batch of usage events for a customer, Create a new billable metric for API requests, Get the latest invoice for a specific customer, Set up a Stripe billing configuration for downstream collection

Not supported: Does not collect payments, calculate sales tax, or store customer payment methods - use for usage metering, rate card pricing, and invoice generation only.

Metronome is a usage-based billing platform that ingests product events, computes billable metrics, and generates invoices from custom rate cards and contracts. Its API supports the entire lifecycle of consumption pricing - defining billable metrics, registering customers, ingesting events, configuring contracts and credits, issuing invoices, and pushing data to downstream billing providers like Stripe. The API is consumed via 132 bearer-authenticated endpoints organised around customers, billable metrics, usage, products, rate cards, contracts, credits, invoices, and alerts.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Metronome to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Metronome, 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%2Fmetronome.com%2Fmetronome" | 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%2Fmetronome.com%2Fmetronome" | 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 Metronome API.

Ingest raw product events into Metronome with POST /v1/ingest for downstream metering

Define billable metrics, products, and rate cards that translate usage into priced line items

Create and update customers including ingest aliases that map your event payloads to Metronome customers

Manage contracts, commits, and credits to support negotiated pricing and prepaid balances

Issue invoices, list breakdowns, and push results to Stripe via the bundled billing-config integration

Configure threshold alerts on customer usage and respond when limits are hit

Use Cases

Patterns agents use Metronome API for, with concrete tasks.

★ Usage-Based Billing for SaaS APIs

SaaS teams charging per API call or compute-second emit events to Metronome via /v1/ingest, define billable metrics that aggregate those events, and attach rate cards that price the aggregates. Metronome handles dedup, metering, and invoice generation, then forwards the result to Stripe so customers receive a payable invoice without the team building a metering pipeline.

Create a billable metric for API requests, register a customer with an ingest alias, post 1000 events to /v1/ingest, then GET /v1/customers/{customer_id}/invoices to confirm the line item.

Negotiated Contracts and Prepaid Commits

Sales teams that close usage-based deals with negotiated minimums use the contracts, commits, and credits endpoints to encode the deal - e.g. 100,000 prepaid units expiring in 12 months at a tiered rate. Metronome draws down the commit as usage flows in and exposes remaining balance through customer-alerts, so account managers can prompt renewals before exhaustion.

Create a contract for customer 'cust_42' with a 100k unit commit, then POST /v1/customer-alerts/create at the 80% threshold to notify the account team.

Threshold Alerts and Spend Caps

Finance and operations teams need real-time visibility when customers approach contractual or spend limits. /v1/alerts/create defines a threshold notification, /v1/customer-alerts/list returns the current status per customer, and /v1/customer-alerts/reset re-arms an alert after acknowledgement - useful for rolling monthly caps without rebuilding the rule each cycle.

Create a threshold alert at 90% of a customer's monthly commit, then POST /v1/customer-alerts/get to check whether it has triggered.

Agent-Driven Usage Reporting

An autonomous agent producing customer health reports can query Metronome through Jentic to pull usage and invoice data on demand. The agent searches by intent, loads the schema for /v1/usage or /v1/customers/{customer_id}/invoices, and executes - with the bearer token kept inside your Jentic One instance for the entire run.

Search Jentic for 'get customer usage', load POST /v1/usage with grouping by customer, and execute for the last 30 days.

Key Endpoints

132 endpoints — metronome is a usage-based billing platform that ingests product events, computes billable metrics, and generates invoices from custom rate cards and contracts.

METHOD

PATH

DESCRIPTION

POST

/v1/ingest

Ingest usage events for metering

POST

/v1/billable-metrics

Create a billable metric

POST

/v1/customers

Create a customer

GET

/v1/customers/{customer_id}/invoices

List invoices for a customer

POST

/v1/usage

Get batched usage data

POST

/v1/alerts/create

Create a threshold notification

POST

/v1/client/billing-config/stripe

Configure Stripe as the downstream billing provider

POST

/v1/ingest

Ingest usage events for metering

POST

/v1/billable-metrics

Create a billable metric

POST

/v1/customers

Create a customer

GET

/v1/customers/{customer_id}/invoices

List invoices for a customer

POST

/v1/usage

Get batched usage data

POST

/v1/alerts/create

Create a threshold notification

POST

/v1/client/billing-config/stripe

Configure Stripe as the downstream billing provider

Jentic AI Readiness Score

This API is usable in Jentic One now. Its AI-readiness score against Jentic's framework shows where it stands today and where improvements would make it even easier for agents to use.

M

Metronome

- Non-Ready (D-)
43/100
38
Foundational Compliance
60
Developer Experience & Jentic Compatibility
23
AI-Readiness & Agent Experience
74
Agent Usability
60
Security
82
AI Discoverability
Powered by JenticScoring Framework 1.0.0 | Scoring Engine 0.4.0
Show dimension breakdown
38

Foundational Compliance

Base layer of spec validity and structural soundness.

Grade: FSignals: 4
54%

Lint Results

Aggregated quality score from linter diagnostics, weighted by severity.

100%

Resolution Completeness

Percentage of `$ref` references that resolve successfully.

0%

Specification Validity

Checks whether the API description parses successfully and conforms to its declared specification (e.g., OpenAPI).

0%

Structural Integrity

Structural correctness score based on schema issues using logarithmic dampening.

60

Developer Experience & Jentic Compatibility

Clarity, completeness, and ingestion readiness for developers and tooling.

Grade: B-Signals: 4
6%

Example Density

How richly the API is illustrated with examples.

95%

Example Validity

Percentage of examples that conform to their schemas.

41%

Response Coverage

Percentage of operations with complete response definitions (success, client error, server error).

100%

Tooling Readiness

Health of API ingestion, bundling, and resolution within Jentic pipelines.

23

AI-Readiness & Agent Experience

Semantic breadth, depth, and agent comprehension for AI systems.

Grade: FSignals: 4
42%

Description Coverage

Coverage of descriptions across API elements.

0%

Error Standardization

Coverage of RFC 9457 Problem Details for error responses.

1%

OperationId Quality

Coverage, uniqueness, and casing consistency of operationIds for AI inference.

51%

Summary Coverage

Coverage of summaries across operations/tags/info.

74

Agent Usability

Functional utility, complexity comfort, and AI orchestration readiness.

Grade: A-Signals: 1
74%

Complexity Comfort

Agent comfort level based on API operational and structural complexity.

60

Security

Trust, risk posture, and security compliance.

Grade: B-Signals: 1
60%

Authentication Strength

Average quality of security schemes based on authentication method strength (weakest link for OAuth2).

82

AI Discoverability

Findability, semantic richness, and reasoning readiness.

Grade: ASignals: 1
82%

Descriptive Richness

Clarity and depth of descriptions across API elements.

View full reportHow the score is calculatedMore about the dimensions

Score it yourself

Every API in the directory is allowlisted, so you can re-score it with no key required.

Score your own APIScoring CLI agent skill
npx @jentic/api-scorecard-cli score <openapi-url>

Why Jentic?

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

Setup

Wiring Metronome by hand means reading its bearer scheme, setting the Authorization header, and finding the right call among many usage, billing, and invoice operations yourself. Through Jentic you install once, import Metronome from the API Directory, store the token once, and your agent calls it.

Permission scoping

Metronome puts the customer id in the URL path (/v1/customers/{customer_id}/invoices), so a rule can pin your agent to one customer's data. You choose the operations it may call, so ingesting usage or creating alerts is not included unless you add it.

Credential isolation

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

Intent-based discovery

Agents search Jentic by intent such as 'ingest a usage event' or 'get a customer's invoice', and Jentic returns the matching Metronome operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Stripe

Payments and subscription management - collects on Metronome-issued invoices

Use Stripe alongside Metronome to actually collect payment on the invoices Metronome generates.

Alternative

Recurly

→

Subscription billing platform with metered components

Choose Recurly when subscription-first pricing is the focus; choose Metronome when usage metrics and contracts dominate the billing model.

Alternative

Paddle

→

Merchant of record for SaaS billing and tax

Use Paddle when you need a merchant of record handling tax and compliance; use Metronome for granular metering paired with your own merchant flow.

Alternative

Zuora

→

Enterprise subscription and revenue billing platform

Choose Zuora for enterprise contract billing with deep ERP integration; choose Metronome for fast metering pipelines and modern usage products.

FAQs

Specific to using Metronome API through Jentic.

What authentication does the Metronome API use?

Metronome uses HTTP bearer authentication - every request needs an Authorization header with your Metronome API token. Through Jentic the token is stored encrypted in the vault and added to requests at execution time.

Can I ingest historical events with the Metronome API?

Yes. POST /v1/ingest accepts events with a timestamp field, so backfills are supported as long as the events fall within Metronome's accepted ingest window. For very old data, contact Metronome to extend the window.

What are the rate limits for the Metronome API?

Metronome documents per-endpoint limits in their docs rather than the OpenAPI spec; ingest endpoints accept high-throughput batched payloads while admin endpoints have lower limits. Inspect 429 responses and back off, and use POST /v1/ingest batches rather than per-event calls.

How do I send a usage event through Jentic?

Search Jentic for 'ingest a usage event into Metronome', load POST /v1/ingest, and execute with an event payload that includes transaction_id, customer_id, event_type, and timestamp. Jentic injects the bearer token from your stored credential.

Does Metronome charge customer credit cards directly?

No - Metronome generates invoices and integrates with billing providers. Use the /v1/client/billing-config/stripe endpoints to push invoices into Stripe, where collection happens. Metronome itself is the metering and invoicing system.

Can I retrieve invoice line-item breakdowns for a customer?

Yes - GET /v1/customers/{customer_id}/invoices/breakdowns returns the per-line breakdown for a customer's invoices, useful for finance reconciliation and customer-facing usage statements.

Can I limit what my agent is allowed to do with the Metronome API?

Yes. Jentic One is self-hosted, so your own rules decide which Metronome operations and credentials the agent may use. Because Metronome puts the customer id in the URL path, such as GET /v1/customers/{customer_id}/invoices, you can pin the agent to a single customer's data. You also choose the exact operations it may call, so actions like POST /v1/ingest or POST /v1/alerts/create stay off limits unless you explicitly grant them.

GET STARTED

Start building with Metronome API

Explore with Jentic One
View OpenAPI Document