Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Google Identity Toolkit 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.
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%2Fcloud.google.com%2Fgoogle-identity-toolkit" | shStep 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%2Fcloud.google.com%2Fgoogle-identity-toolkit" | sh
jentic register # connects your agent to your Jentic One instanceJentic 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.
What an agent can do with Google Identity Toolkit API.
Sign new users up with email and password via /signupNewUser and verify passwords via /verifyPassword
Verify a federated identity provider assertion via /verifyAssertion and custom tokens via /verifyCustomToken
Send email link sign-in messages via /emailLinkSignin
Issue out-of-band confirmation codes for email verification or password reset via /getOobConfirmationCode
GET STARTED
Read and update user account info via /getAccountInfo and /setAccountInfo
Send and verify phone-number verification codes via /sendVerificationCode and /verifyPhoneNumber
Bulk import or export accounts via /uploadAccount and /downloadAccount
Patterns agents use Google Identity Toolkit API for, with concrete tasks.
★ Federated Login for a Web or Mobile App
Let users sign in to a third-party site with Google, Facebook, or other identity providers by passing their assertion to /verifyAssertion, which validates the IdP token and returns an Identity Toolkit ID token plus account info. The /createAuthUri endpoint helps the front end determine which providers a given email is linked to.
Call /createAuthUri with the user's email to get linked providers, then on assertion return call /verifyAssertion to issue the ID token.
Email and Password Account Lifecycle
Run a self-serve signup, login, password reset, and email verification flow on a third-party site using /signupNewUser, /verifyPassword, /getOobConfirmationCode, and /resetPassword. The /emailLinkSignin endpoint supports passwordless email-link login as an alternative to passwords.
Sign a new user up via /signupNewUser, send a verification OOB code via /getOobConfirmationCode, then on email-link click verify via /emailLinkSignin.
Phone Number Verification
Verify a user's phone number by sending a one-time code via /sendVerificationCode and validating the code via /verifyPhoneNumber. The result is a phone-credential ID token that can be combined with a federated or password account.
Send a verification code via /sendVerificationCode for a phone number, then on user input validate via /verifyPhoneNumber to issue the phone credential.
Account Migration and Bulk Operations
Migrate an existing user base into Identity Toolkit using /uploadAccount and export the resulting accounts via /downloadAccount for backup or downstream use. Account records can be inspected and updated in flight via /getAccountInfo and /setAccountInfo.
Use /uploadAccount with the hashed password records from the legacy system, then verify a sample with /verifyPassword to confirm the import.
AI Agent Identity Operations via Jentic
An AI agent that runs identity operations for a SaaS app can verify users, reset passwords, or send verification codes by searching Jentic for the matching Identity Toolkit operation. Jentic securely stores the OAuth credentials so the agent only ever holds scoped execution rights.
Use the Jentic search query 'verify a user password' to find /verifyPassword and execute with the email and password to obtain an ID token.
20 endpoints — jentic publishes the only available openapi specification for google identity toolkit api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/signupNewUser
Sign up a new user with email and password
/verifyPassword
Verify a user's password and issue an ID token
/verifyAssertion
Verify a federated identity provider assertion
/verifyPhoneNumber
Verify a phone number with a one-time code
/sendVerificationCode
Send a phone verification SMS
/getOobConfirmationCode
Issue an out-of-band confirmation code
/getAccountInfo
Read account info for one or more users
/setAccountInfo
Update account info for a user
/signupNewUser
Sign up a new user with email and password
/verifyPassword
Verify a user's password and issue an ID token
/verifyAssertion
Verify a federated identity provider assertion
/verifyPhoneNumber
Verify a phone number with a one-time code
/sendVerificationCode
Send a phone verification SMS
/getOobConfirmationCode
Issue an out-of-band confirmation code
/getAccountInfo
Read account info for one or more users
/setAccountInfo
Update account info for a user
What agents get from Jentic-routed access to this vendor.
Setup
Wiring Google Identity Toolkit by hand means running the OAuth 2.0 flow, refreshing access tokens, mapping its relying-party account and verification endpoints, and handling retries yourself. Through Jentic you install once, import the Identity Toolkit API from the API Directory, store the OAuth credentials once, and your agent calls it.
Permission scoping
Identity Toolkit's account and verification targets travel in the request body rather than the URL path, so scope the agent to the operations it needs, such as verifying a password or sending a phone verification code. You choose which operations are in that set, so setAccountInfo changes are not included unless you add them.
Credential isolation
Your Google OAuth 2.0 credentials are stored once, encrypted, by your own Jentic One instance, which injects a scoped access token at execution time. The client secret and refresh token never enter the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'verify a user password' or 'send a phone verification code', and Jentic returns the matching Identity Toolkit operation with its input schema, so the agent calls the right endpoint without browsing the reference docs.
Alternatives and complements available in the Jentic catalogue.
Specific to using Google Identity Toolkit API through Jentic.
Why is there no official OpenAPI spec for Google Identity Toolkit API?
Google does not publish a structured OpenAPI specification for the public Identity Toolkit relying-party API. Jentic generates and maintains this spec so that AI agents and developers can call Google Identity Toolkit API via structured tooling. It is validated against the live API and kept up to date. Get started with Jentic One, the self-hosted execution layer.
What authentication does the Google Identity Toolkit API use?
The API uses OAuth 2.0 with Google-issued credentials for the relying-party project. Through Jentic the OAuth credentials are stored encrypted in the vault and the agent only holds a scoped execution context.
Can I verify a Google or Facebook login token with this API?
Yes. POST the IdP assertion to /verifyAssertion to validate the token and receive an Identity Toolkit ID token along with the linked account info. /createAuthUri can be used first to learn which providers an email is linked to.
How do I send a phone OTP through Jentic?
Search Jentic for 'send a phone verification code', load the schema for /sendVerificationCode, and execute with the phone number. The Python SDK uses await client.search, await client.load, await client.execute, then verify the user's code via /verifyPhoneNumber.
How do I trigger a password reset email?
Call /getOobConfirmationCode with the password reset request type and the user's email to send the reset email. When the user follows the link, exchange the OOB code via /resetPassword to set the new credential.
Is this the same as Firebase Authentication?
Identity Toolkit is the underlying relying-party API that Firebase Authentication is built on. Firebase wraps these endpoints with client SDKs and additional configuration; calling Identity Toolkit directly is appropriate when you want to manage relying-party flows from a backend.
Can I limit what my agent is allowed to do with the Google Identity Toolkit API?
Yes. Because you run Jentic One yourself, your own rules decide which Identity Toolkit operations and which stored Google OAuth credentials the agent may use. Identity Toolkit sends its account and verification targets in the request body rather than the URL, so you scope the agent to only the operations it needs, such as verifying a password with /verifyPassword or sending a phone code with /sendVerificationCode. Account-changing calls like /setAccountInfo stay out of that set unless you explicitly add them.
Know of an official OpenAPI document? Contribute it →
For Agents
Implement federated and password-based login, manage user accounts, and verify email and phone numbers using Google Identity Toolkit's relying-party endpoints.
Use for: Sign up a new user with an email and password, Verify the password a returning user just submitted, Verify a Google or Facebook OAuth assertion to log a user in, Send an email verification link to a user who just signed up
Not supported: Does not handle workforce SSO, fine-grained authorisation, or directory provisioning - use for relying-party authentication and account management only.
Jentic publishes the only available OpenAPI specification for Google Identity Toolkit API, keeping it validated and agent-ready. Identity Toolkit is Google's relying-party authentication API that helps third-party sites implement federated login, account management, and email-based verification. The 20 endpoints cover signup and password verification, federated assertion verification, account info management, project configuration, public keys, OOB confirmation codes for email verification, and phone number verification. It is the underlying API surface that Firebase Authentication is built on top of.