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 / Google / Firebase Management API
Firebase Management API logo

Google Firebase Management API

Browse all Google APIs
✓ Official Vendor SpecDeveloper ToolsProject Managementoauth221 EndpointsREST

For Agents

Programmatically create Firebase projects, register iOS, Android, and Web apps, and retrieve SDK configuration so an agent can bootstrap Firebase environments end to end.

Use for: Add Firebase to an existing Google Cloud project, Register a new Android app in a Firebase project, Get the SDK config JSON for a Firebase Web app, List all iOS apps registered under a Firebase project

Not supported: Does not read or write Firestore data, send push notifications, or run Cloud Functions — use for managing Firebase projects and registering apps only.

The Firebase Management API enables programmatic setup and lifecycle management of Firebase projects and the iOS, Android, and Web apps registered inside them. It exposes operations to add Firebase to an existing Google Cloud project, register apps, list available locations, fetch SDK config, and manage SHA certificate fingerprints for Android apps. Use it to automate project provisioning across environments without clicking through the Firebase console.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Firebase Management API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Firebase Management 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 Firebase Management API.

Add Firebase to an existing Google Cloud project to enable Firebase services

Register iOS, Android, and Web apps inside a Firebase project

Retrieve runtime SDK configuration for an Android, iOS, or Web app

Manage Android SHA certificate fingerprints used by Authentication and Dynamic Links

Finalise a Firebase project location to enable region-pinned services like Firestore

Use Cases

Patterns agents use Firebase Management API for, with concrete tasks.

★ Automated Firebase Project Bootstrapping

Provision a new Firebase project, finalise its location, and register the iOS, Android, and Web apps a team needs in a single automation run. The Management API turns a process that normally involves several Firebase console screens into a deterministic script suitable for environment-per-branch workflows. Bootstrapping an end-to-end staging environment takes minutes once the script is in place.

Call POST /v1beta1/{+project}:addFirebase to enable Firebase on a Cloud project, then POST /v1beta1/{+parent}/androidApps with packageName=com.example.app and POST /v1beta1/{+parent}/iosApps with bundleId=com.example.app to register both clients.

SDK Config Retrieval for CI/CD

Fetch the up-to-date SDK configuration for Firebase Android, iOS, and Web apps so build pipelines can inject google-services.json, GoogleService-Info.plist, and Web init configs at build time rather than committing them to source control. The webApps.getConfig endpoint returns the JSON config while androidApps and iosApps expose equivalent platform-specific configs.

Call GET /v1beta1/{+name}/config on the resource projects/PROJECT/webApps/APPID and write the returned JSON to the build artifact directory.

Android Fingerprint Management for App Auth

Manage Android SHA-1 and SHA-256 certificate fingerprints needed by Firebase Authentication, Dynamic Links, and App Check via the projects.androidApps.sha endpoints. The API supports listing existing fingerprints, adding fingerprints from new signing keys, and removing rotated ones. This avoids ad-hoc updates in the Firebase console when signing keys change.

Use POST /v1beta1/{+parent}/sha to register a new SHA-256 fingerprint on the Android app projects/PROJECT/androidApps/APPID and confirm via GET /v1beta1/{+parent}/sha that it is listed.

Agent-Driven Firebase Environment Provisioning

An AI agent connected through Jentic can stand up a complete Firebase environment in response to a single intent like create a new staging Firebase project for the launch app. Jentic loads the relevant Firebase Management endpoints, the agent strings together project enablement, app registration, and config retrieval, and the OAuth 2.0 flow is handled transparently.

Through Jentic, search for register a firebase android app, load the androidApps.create operation, and execute it with parent=projects/my-project and packageName=com.example.staging.

Key Endpoints

21 endpoints — the firebase management api enables programmatic setup and lifecycle management of firebase projects and the ios, android, and web apps registered inside them.

METHOD

PATH

DESCRIPTION

GET

/v1beta1/projects

List Firebase projects

POST

/v1beta1/{+name}:remove

Remove a Firebase app from a project

POST

/v1beta1/{+name}:undelete

Undelete a previously removed Firebase app

GET

/v1beta1/{+parent}/androidApps

List Android apps under a Firebase project

POST

/v1beta1/{+parent}/androidApps

Register a new Android app in a Firebase project

GET

/v1beta1/availableProjects

List Cloud projects eligible to add Firebase

GET

/v1beta1/projects

List Firebase projects

POST

/v1beta1/{+name}:remove

Remove a Firebase app from a project

POST

/v1beta1/{+name}:undelete

Undelete a previously removed Firebase app

GET

/v1beta1/{+parent}/androidApps

List Android apps under a Firebase project

POST

/v1beta1/{+parent}/androidApps

Register a new Android app in a Firebase project

GET

/v1beta1/availableProjects

List Cloud projects eligible to add Firebase

Why Jentic?

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

Credential management

Credential isolation

Google OAuth 2.0 service-account keys for the Firebase Management API are stored in the Jentic vault. Agents receive scoped access tokens with the cloud-platform or firebase scope at call time and never see the raw private key.

Intent-based discovery

Intent-based discovery

Agents search Jentic with intents like create a firebase project or register a firebase android app and Jentic returns the matching addFirebase, androidApps.create, and iosApps.create operations with their input schemas.

Time to first call

Time to first call

Direct integration with Firebase Management API: 2-4 days for OAuth, project setup automation, and long-running-operation handling. Through Jentic: under 1 hour.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Firebase App Check API

→

Protects the Firebase apps registered through this API from abuse.

Choose App Check after Management API has registered an app, to attest that backend traffic comes from the genuine app instance.

Complementary

Firebase Hosting API

→

Deploys static assets and configures channels for the Web apps registered here.

Choose Firebase Hosting once a Web app exists in a project, to ship versioned static deploys to a hosted site.

Alternative

Cloud Resource Manager API

→

Manages underlying Google Cloud projects without the Firebase overlay.

Choose Resource Manager when only base Cloud project, folder, or org operations are needed; use Firebase Management when Firebase services must be enabled or apps must be registered.

FAQs

Specific to using Firebase Management API through Jentic.

What authentication does the Firebase Management API use?

The API uses Google OAuth 2.0 with the firebase or cloud-platform scope. Through Jentic, OAuth credentials are stored in the encrypted vault and a scoped access token is supplied at execution time without exposing the underlying client secret.

Can I add Firebase to an existing Google Cloud project with the Firebase Management API?

Yes. POST /v1beta1/{+project}:addFirebase enables Firebase on a Cloud project that you already own. After the long-running operation completes, the project is visible in the Firebase console and accepts further app registration calls.

What are the rate limits for the Firebase Management API?

Google enforces the standard googleapis.com per-project quota, typically a few hundred requests per minute for management-style endpoints. Bulk app registration scripts should add backoff and respect the long-running-operation lifecycle returned by addFirebase and similar calls.

How do I register an Android app in a Firebase project through Jentic?

Run pip install jentic, search for register a firebase android app, load the androidApps.create operation, and execute it with parent=projects/PROJECT and packageName=com.example.app. Sign up at https://app.jentic.com/sign-up.

Does the Firebase Management API return google-services.json or GoogleService-Info.plist?

Yes. The androidApps and iosApps resources expose getConfig endpoints that return the JSON or plist content as a base64 payload, suitable for writing into a CI build artifact for Android and iOS clients.

Is the Firebase Management API free?

The Management API is included with Firebase at no extra charge; you pay only for the Firebase services your provisioned apps consume, such as Firestore, Authentication, or Cloud Messaging beyond their free quotas.

GET STARTED

Start building with Firebase Management API

Explore with Jentic
View OpenAPI Document