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 / API Discovery Service
API Discovery Service logo

Google API Discovery Service

Browse all Google APIs
✓ Official Vendor SpecDeveloper ToolsPackage Registrynone2 EndpointsREST

For Agents

Enumerate every Google API and fetch its machine-readable description so tools, SDKs, and agents can self-bootstrap.

Use for: List all Google APIs available via the Discovery service, Get the Discovery document for a specific Google API, Find the OAuth scopes for the Google Calendar API, Retrieve the schema for the Drive v3 files resource

Not supported: Does not enable APIs, manage quotas, or proxy actual API calls — use only for reading the Google API directory and Discovery REST descriptions.

Google's API Discovery Service is the meta-API that describes every other Google API. Two endpoints expose the directory of supported APIs and the machine-readable Discovery REST description for each one — methods, parameters, schemas, scopes, and base URLs. Client library generators, IDE tooling, and Jentic itself use this surface to bootstrap integrations against the entire googleapis.com surface without hand-written specs.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the API Discovery Service to your agent

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

List the directory of all Google APIs available through Discovery

Fetch the full Discovery REST description for any Google API and version

Extract method definitions, parameters, and request/response schemas for SDK generation

Resolve OAuth scopes and base URLs declared by a target API

Filter the directory by preferred or all-versions to find the latest release

Use Cases

Patterns agents use API Discovery Service API for, with concrete tasks.

★ SDK and Client Library Generation

Tooling teams call /apis to discover every Google API, then /apis/{api}/{version}/rest to pull the Discovery document for each. The descriptions feed code generators that emit typed clients in Python, Go, Java, and TypeScript. This is exactly how the official Google API Client Libraries are produced.

Call /apis with preferred=true, then for the calendar v3 entry call /apis/calendar/v3/rest and extract every method's id, path, and parameter schema.

Scope and Permission Inventory

Security and platform teams use the Discovery API to inventory every OAuth scope declared by every Google API in a project's footprint. Pulling the full directory and extracting auth.oauth2.scopes from each Discovery doc gives a complete map of what tokens can do — useful for least-privilege reviews and risk register updates.

Call /apis with preferred=true and for each entry fetch /apis/{api}/{version}/rest, extract auth.oauth2.scopes, then return a deduplicated scope list.

Spec-Driven Integration Bootstrapping

Integration platforms (including Jentic) use Discovery as the source-of-truth for converting Google APIs into modern OpenAPI specs. Pulling /apis once on schedule produces the directory; pulling per-API REST documents produces the operational shape; conversion logic translates that into OpenAPI 3.x for tooling and agent runtimes.

Fetch /apis/drive/v3/rest, then transform the returned Discovery REST document into an OpenAPI 3 paths object preserving operationId, parameters, and request/response schemas.

Agent-Driven API Lookup

Through Jentic, an AI agent that needs to operate on a Google API it has not seen before can call the Discovery service to fetch the description on demand, then use it to build a request — all without OAuth, since Discovery is unauthenticated.

Use Jentic to search 'list Google APIs', load the schema for /apis, and execute it with preferred=true to enumerate the catalogue.

Key Endpoints

2 endpoints — google's api discovery service is the meta-api that describes every other google api.

METHOD

PATH

DESCRIPTION

GET

/apis

List the directory of Google APIs

GET

/apis/{api}/{version}/rest

Fetch the Discovery REST document for a specific API and version

GET

/apis

List the directory of Google APIs

GET

/apis/{api}/{version}/rest

Fetch the Discovery REST document for a specific API and version

Why Jentic?

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

Credential management

Credential isolation

Unauthenticated API — no credentials are stored or rotated. Jentic still executes the call from an isolated runner per agent session so response data is contained.

Intent-based discovery

Intent-based discovery

Agents search by intent (e.g., 'list Google APIs' or 'fetch Calendar API spec') and Jentic returns the right Discovery operation with its parameter schema.

Time to first call

Time to first call

Direct integration: under an hour to call two unauthenticated endpoints and parse JSON. Through Jentic: minutes — search, load schema, execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Service Usage API

→

Enable and disable Google APIs for a project — pairs with Discovery's enumeration

Use Discovery to find which APIs exist; use Service Usage to enable them on a target Google Cloud project.

Complementary

Service Management API

→

Manage service configurations for Google-managed APIs

Use Service Management to operate on managed services; use Discovery to read the user-facing API surface.

Alternative

Service Control API

→

Runtime check and report calls for service consumers — different concern from Discovery's surface description

Choose Service Control for runtime quota and access checks on Google-managed services; choose Discovery to read the user-facing API surface.

FAQs

Specific to using API Discovery Service API through Jentic.

What authentication does the Google API Discovery Service use?

None. Both /apis and /apis/{api}/{version}/rest are public, unauthenticated GETs. Through Jentic, the call runs in the sandboxed runner without any vault credentials touching the request.

Can I get the OAuth scopes for any Google API through Discovery?

Yes. Fetch /apis/{api}/{version}/rest and read auth.oauth2.scopes — every scope the API declares is listed there with its description, which is the canonical source for least-privilege OAuth setup.

What are the rate limits for the API Discovery Service?

Google does not publish strict per-second limits for Discovery, but unreasonable polling can be throttled. Cache responses locally and re-fetch on a slow cadence (daily for the directory, weekly per-API) instead of calling on every request.

How do I list every Google API through Jentic?

Search 'list Google APIs', load the schema for /apis, then execute it. To filter to the recommended version of each API, pass preferred=true in the query parameters.

Is the Discovery REST format the same as OpenAPI?

No. Discovery is Google's own format that pre-dates OpenAPI 3. It contains similar concepts (resources, methods, parameters, schemas) but uses different field names and structures. Tools convert it to OpenAPI for compatibility with modern toolchains.

Is the Discovery Service free?

Yes. There is no charge for Discovery calls and you do not need an API key or OAuth token to read the directory or any individual Discovery REST document.

GET STARTED

Start building with API Discovery Service API

Explore with Jentic
View OpenAPI Document