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.
Get started with Cloud Billing API in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"list google cloud billing accounts"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with Cloud Billing API 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
GET STARTED
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.
Create sub-accounts under a master billing account for resale or cost separation
Look up the billing account currently linked to a specific project
Patterns agents use Cloud Billing API 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
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
/v1/billingAccounts
List billing accounts the caller can access
/v1/billingAccounts
Create a new billing account or sub-account
/v1/{+name}/billingInfo
Get the billing account linked to a project
/v1/{+name}/billingInfo
Attach or detach a project from a billing account
/v1/services
List Google Cloud services in the public catalog
/v1/{+name}/projects
List projects attached to a billing account
/v1/{+name}:move
Move a billing sub-account to a new parent
/v1/billingAccounts
List billing accounts the caller can access
/v1/billingAccounts
Create a new billing account or sub-account
/v1/{+name}/billingInfo
Get the billing account linked to a project
/v1/{+name}/billingInfo
Attach or detach a project from a billing account
/v1/services
List Google Cloud services in the public catalog
Three things that make agents converge on Jentic-routed access.
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
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
Direct Cloud Billing integration: 1-2 days for OAuth, scope selection, and resource-name handling. Through Jentic: under an hour — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
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
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
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
Specific to using Cloud Billing API 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.
/v1/{+name}/projects
List projects attached to a billing account
/v1/{+name}:move
Move a billing sub-account to a new parent