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 / Finance / Google / Cloud Billing API
Cloud Billing API logo

Google Cloud Billing API

Browse all Google APIs
✓ Official Vendor SpecFinanceAccountingoauth218 EndpointsREST

For Agents

Manage Google Cloud billing accounts, project-to-account associations, and the public service and SKU catalog. Useful for cost-attribution, account hygiene, and finance automation on GCP.

Use for: I need to attach my new project to our shared billing account, List every billing account our organization can access, Move a project to a different billing account before month end, Find which billing account funds a given Google Cloud project

Not supported: Does not return invoices, per-resource cost lines, or budget alerts — use for billing-account, project-link, and SKU catalog management only.

The Google Cloud Billing API lets developers manage billing accounts, link or unlink projects from a billing account, and read the public catalog of Google Cloud services and SKUs. Agents can enumerate every billable service and SKU in the catalog, look up the billing account a project is attached to, and move projects or sub-accounts between billing accounts. The API also exposes IAM policy management on billing accounts so that finance and platform teams can grant or audit billing administrator access programmatically.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Cloud Billing API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Cloud Billing 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://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | 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 Cloud Billing API.

List and read every billing account a caller has access to

Attach or detach a Google Cloud project from a billing account

Move a project or sub-account to a different billing account

Enumerate the public catalog of Google Cloud services and SKUs

Read or update IAM policies that control who can manage a billing account

Create sub-accounts under a master billing account for resale or cost separation

Look up the billing account currently linked to a specific project

Use Cases

Patterns agents use Cloud Billing API for, with concrete tasks.

★ Project-to-Billing-Account Hygiene

Platform teams use the Cloud Billing API to keep every Google Cloud project linked to the right billing account. The updateBillingInfo operation moves a project to a new account, and listProjectBillingInfo enumerates current associations. This is the basis for chargeback workflows that require every project to roll up to a known cost centre.

Call PUT /v1/{name}/billingInfo with name=projects/my-project and billingAccountName=billingAccounts/01ABCD-234567-89EFGH

Channel Partner Sub-Account Provisioning

Resellers and managed service providers use the Cloud Billing API to create sub-accounts under a master billing account so each customer's spend is isolated. Sub-accounts inherit credit terms from the master account but produce separate invoices, which simplifies billback and reporting.

Call POST /v1/{parent}/billingAccounts with parent=billingAccounts/01ABCD-234567-89EFGH and a displayName for the new sub-account

Service and SKU Catalog Enumeration

Cost-modelling tools call the public services and skus endpoints to pull the full Google Cloud catalog — every service, every SKU, with pricing tiers and units. This drives cost estimators, what-if analyses, and FinOps dashboards without scraping the public price list.

Call GET /v1/services to list services, then GET /v1/{parent}/skus on the Compute Engine service name to enumerate its SKUs

AI Agent Billing Auditor via Jentic

An agent uses the Cloud Billing API to answer finance questions on demand: which projects are unlinked, who has billing admin on the master account, what new SKUs were added this week. Through Jentic, the agent loads the operation schema, runs the call against the configured organization, and reports back with structured evidence.

Search Jentic for 'list google cloud billing accounts', execute the operation, then for each result call GET /v1/{name}/projects and flag unlinked projects

Key Endpoints

18 endpoints — the google cloud billing api lets developers manage billing accounts, link or unlink projects from a billing account, and read the public catalog of google cloud services and skus.

METHOD

PATH

DESCRIPTION

GET

/v1/billingAccounts

List billing accounts the caller can access

POST

/v1/billingAccounts

Create a new billing account or sub-account

GET

/v1/{+name}/billingInfo

Get the billing account linked to a project

PUT

/v1/{+name}/billingInfo

Attach or detach a project from a billing account

GET

/v1/services

List Google Cloud services in the public catalog

GET

/v1/{+name}/projects

List projects attached to a billing account

POST

/v1/{+name}:move

Move a billing sub-account to a new parent

GET

/v1/billingAccounts

List billing accounts the caller can access

POST

/v1/billingAccounts

Create a new billing account or sub-account

GET

/v1/{+name}/billingInfo

Get the billing account linked to a project

PUT

/v1/{+name}/billingInfo

Attach or detach a project from a billing account

GET

/v1/services

List Google Cloud services in the public catalog

GET

/v1/{+name}/projects

List projects attached to a billing account

POST

/v1/{+name}:move

Move a billing sub-account to a new parent

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

Credential isolation

Google Cloud OAuth 2.0 credentials and service account keys are stored encrypted in the Jentic vault. Agents receive short-lived access tokens scoped to cloud-billing — raw service account JSON never enters the agent context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent (e.g. 'link gcp project to billing account') and Jentic returns the matching Cloud Billing operation with its parameter schema, so the agent can call the right endpoint without reading Discovery docs.

Time to first call

Time to first call

Direct Cloud Billing integration: 1-2 days for OAuth, scope selection, and resource-name handling. Through Jentic: under an hour — search, load schema, execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Cloud Billing Budget API

→

Creates and manages spend budgets and threshold alerts on a billing account

Use Cloud Billing to manage account structure; use Billing Budgets to enforce spend limits and notifications

Complementary

Cloud Resource Manager API

→

Manages the project hierarchy that the Cloud Billing API attaches accounts to

Use Resource Manager to create or move projects; use Cloud Billing to attach them to the correct account

Alternative

Cloud Channel API

→

Reseller-facing API for partner billing flows that wrap Cloud Billing sub-accounts

Use Cloud Channel when you are an authorised reseller managing customer subscriptions; use Cloud Billing for direct billing-account management

FAQs

Specific to using Cloud Billing API through Jentic.

What authentication does the Cloud Billing API use?

The Cloud Billing API uses OAuth 2.0 with the cloud-platform or cloud-billing scope. Tokens are issued for a Google service account or end user. Through Jentic, the OAuth credential lives in the Jentic vault and the agent receives a short-lived access token only — the underlying service account key never enters agent context.

Can I move a project to a different billing account with this API?

Yes. PUT /v1/{name}/billingInfo with name set to projects/PROJECT_ID and a body that sets billingAccountName to the target billing account resource. The caller needs billing.resourceAssociations.create on the target account and the same permission to detach from the old one.

What are the rate limits for the Cloud Billing API?

Cloud Billing API quotas are published per-method in the Google Cloud console under the Cloud Billing API quota page; typical defaults are several thousand requests per minute per project for the read-heavy services and skus endpoints, with lower limits for write operations on billing accounts.

How do I list every project tied to a billing account through Jentic?

Search Jentic for 'list projects on google cloud billing account' and execute the resulting operation against GET /v1/{name}/projects with name=billingAccounts/01ABCD-234567-89EFGH. The response is a paginated list of ProjectBillingInfo entries.

Does the Cloud Billing API expose actual cost data?

No. The Cloud Billing API manages billing-account metadata and the public SKU catalog; it does not return invoices or per-resource cost line items. For consumed cost data, export billing data to BigQuery and query it from there, or use Cloud Billing's BigQuery Export feature.

Is the Cloud Billing API free?

The Cloud Billing API itself has no per-call charge. Standard Google Cloud usage and the BigQuery storage and query charges that come with billing exports are billed normally as documented on the Google Cloud pricing page.

GET STARTED

Start building with Cloud Billing API

Explore with Jentic
View OpenAPI Document