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

Terms & Conditions•Privacy Policy•
© 2026 Jentic Technology Ltd. All rights reserved.
Switch to light modeSwitch to dark mode
APIs / Payments / Google / Google Wallet API
Google Wallet API logo

Google Wallet API

Browse all Google APIs
Official vendor OpenAPI document · agent-readyPaymentsPos Terminaloauth298 EndpointsREST

For Agents

Create and update Google Wallet passes for tickets, boarding passes, loyalty cards, gift cards, and offers so an agent can issue saveable passes and push updates to holders.

Use for: I need to issue an event ticket pass to a customer, Update the gate and seat for a boarding pass before departure, Add points to a loyalty card holder's balance, Issue a gift card with a 50 dollar starting balance

Not supported: Does not handle payment processing, card-on-file storage, or Apple Wallet passes - use for issuing and updating Google Wallet pass classes and objects only.

The Google Wallet API lets issuers create and manage saveable passes including event tickets, boarding passes, loyalty cards, gift cards, offers, and generic passes. Each pass is modeled as a Class (the template) and an Object (the per-user instance), with separate endpoints for creating, updating, expiring, and posting messages to passes. Issuers also smart-tap signing keys, manage Jose JWT formats for the Add to Google Wallet button, and can fan out updates to all holders of a class.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Google Wallet API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Google Wallet 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://jentic.com/install.sh?src=apis&api=%2Fapis%2Fgoogleapis.com%2Fwalletobjects" | 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%2Fgoogleapis.com%2Fwalletobjects" | 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 Google Wallet API.

Create and manage event ticket classes and per-user objects with seat and section data

Issue boarding pass classes and objects including flight, gate, and seat updates

Operate loyalty program classes and member objects with point balances and tier metadata

Issue gift card classes and objects with balances and barcode redemption codes

Distribute offers and coupon classes redeemable in-store or online

Push messages to all holders of a class for delays, expirations, or promotions

Manage smart-tap merchant configuration for in-person tap-to-pay redemption

Use Cases

Patterns agents use Google Wallet API for, with concrete tasks.

★ Event Ticketing Add to Google Wallet

Ticketing platforms create an event ticket Class for each event and an Object for each ticket buyer, then expose an Add to Google Wallet button that opens the pass directly. The Wallet API supports seat, section, row, and gate metadata and lets the issuer push real-time updates such as gate changes or delays via the addMessage endpoint. This replaces email-only confirmations with a saveable pass that surfaces on the user's lock screen near the venue.

Create an event ticket class for Concert-2026-07-04 and insert ticket objects for each buyer with seat metadata

Airline Boarding Pass Distribution

Airlines issue Google Wallet boarding passes alongside email and app delivery so travelers have a backup that updates in real time. The Wallet API exposes flightClass and flightObject endpoints with rich flight, gate, and seat fields, plus addMessage for delay notifications. Smart-tap signing keys enable boarding pass scanning at the gate without the user opening the app.

Update the gate field on every flightObject for flight UA123 and post a message to all holders

Loyalty Program in Google Wallet

Retailers issue loyalty cards as Google Wallet passes so members can redeem in-store via smart-tap or scan a QR code. The Wallet API supports loyaltyClass and loyaltyObject with points balances, tier names, and program-wide messaging, letting the issuer push updates when a member's status changes. The Add to Google Wallet flow keeps the card synced without manual updates by the cardholder.

Create a loyaltyObject for member 12345 with 1,200 points and Gold tier and link it to the loyalty class

AI Agent Pass Issuance

An AI agent integrated through Jentic responds to merchant prompts like 'issue a digital ticket to this customer' by discovering the Google Wallet API by intent search, creating an event ticket Object linked to an existing Class, and returning the JWT used by the Add to Google Wallet button. Because the API uses OAuth 2.0 with the wallet_object.issuer scope, Jentic isolates the token in your Jentic One instance and exposes only a scoped reference.

Search Jentic for issue an event ticket pass and call the eventTicketObject insert operation with seat metadata

Key Endpoints

98 endpoints — the google wallet api lets issuers create and manage saveable passes including event tickets, boarding passes, loyalty cards, gift cards, offers, and generic passes.

METHOD

PATH

DESCRIPTION

GET

/walletobjects/v1/eventTicketClass

List event ticket classes for an issuer

POST

/walletobjects/v1/eventTicketClass/{resourceId}/addMessage

Send a message to all holders of an event ticket class

GET

/walletobjects/v1/eventTicketObject

List event ticket objects for a class

GET

/walletobjects/v1/eventTicketObject/{resourceId}

Get a specific event ticket object

GET

/walletobjects/v1/eventTicketClass

List event ticket classes for an issuer

POST

/walletobjects/v1/eventTicketClass/{resourceId}/addMessage

Send a message to all holders of an event ticket class

GET

/walletobjects/v1/eventTicketObject

List event ticket objects for a class

GET

/walletobjects/v1/eventTicketObject/{resourceId}

Get a specific event ticket object

Why Jentic?

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

Setup

Setup

Wiring the Google Wallet API by hand means setting up OAuth 2.0 with the wallet_object.issuer scope, managing token refresh, and matching class and object calls against the walletobjects.googleapis.com host. Through Jentic you install once, import the Google Wallet API from the API Directory, store the issuer credential once, and your agent calls it.

Permission scoping

Permission scoping

The Google Wallet API puts the pass identifier in the URL path (/walletobjects/v1/eventTicketObject/{resourceId}), so a rule can pin your agent to one pass class or object: it can read that resource and add messages to it and nothing else. You choose the operations it may call, so class creation or object updates are not included unless you add them.

Credential management

Credential isolation

Your Google Wallet issuer credential is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'issue an event ticket pass' or 'add a message to a loyalty object', and Jentic returns the matching class or object 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

Cloud Vision API

→

OCR scanned receipts or barcodes used in pass redemption flows

Choose Vision when an agent needs to read a barcode or scanned coupon before issuing or redeeming a Wallet pass.

Complementary

Gmail API

→

Send the email containing the Add to Google Wallet button after pass issuance

Choose Gmail when an agent needs to deliver pass JWTs to recipients via email after creating the Wallet object.

Complementary

Cloud Monitoring API

→

Track Wallet API call volume, error rates, and pass issuance funnel metrics

Choose Monitoring when an issuer needs alerting on pass issuance failures or quota exhaustion in production.

Complementary

Cloud Translation API

→

Localize pass copy fields like issuerName, eventName, and message body

Choose Translation when issuing passes to international customers and the localizedString fields on the Wallet object need translated content.

FAQs

Specific to using Google Wallet API through Jentic.

What authentication does the Google Wallet API use?

The Google Wallet API uses OAuth 2.0 with the https://www.googleapis.com/auth/wallet_object.issuer scope, typically authorized via a service account on the registered issuer ID. Through Jentic, the OAuth token is stored encrypted in your Jentic One instance and only a scoped reference is exposed to the agent at execution time.

Can I push real-time updates to passes already saved in Google Wallet?

Yes. Update the relevant Object (for example, a flightObject) with the new field values, or call addMessage on the parent Class to fan out a message to every holder. Updates propagate to saved passes the next time the user's device syncs with Google.

What are the rate limits for the Google Wallet API?

Default issuer quotas allow 600 requests per minute and roughly 25,000 requests per day, with bulk insert operations counting as a single call regardless of object count. Higher quotas are available on request through the Wallet issuer console.

How do I issue an event ticket pass through Jentic with the Google Wallet API?

Install Jentic with pip install jentic, search for issue an event ticket pass, load the schema for the eventTicketObject insert operation, then call it with classId, objectId, seatInfo, and barcode. Generate the JWT for the Add to Google Wallet button using your issuer signing key and reference the inserted object.

Does the Google Wallet API support smart-tap for in-person redemption?

Yes. The smartTap resource manages merchant smart-tap configuration including key version and merchant identifiers. Passes that include smartTapRedemptionValue and a registered merchant key can be redeemed by tapping the device against an NFC reader without opening the Wallet app.

Why does my insert call fail with 403 even with a valid token?

The Google Wallet API enforces issuer-level access on top of OAuth scopes. Confirm your issuer ID is approved for the relevant pass type in the Wallet issuer console, and that the service account is added as an authorized account on the issuer. Pass type approval can take several days for first-time issuers.

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

Yes. Because you run Jentic One self-hosted, your own rules decide which Google Wallet operations and credentials the agent may use, and the pass identifier sits in the URL path (for example /walletobjects/v1/eventTicketObject/{resourceId}), so you can pin the agent to a single pass class or object. Scoped that way, the agent can read that resource and post an addMessage to it and nothing else. Operations like class creation or object updates stay off limits unless you explicitly grant them, and the encrypted issuer credential is injected only at execution time.

GET STARTED

Start building with Google Wallet API

Explore with Jentic One
View OpenAPI Document