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 / Security / Google / Container Analysis API
Container Analysis API logo

Google Container Analysis API

Browse all Google APIs
✓ Official Vendor SpecSecurityVulnerability Managementoauth216 EndpointsREST

For Agents

Query vulnerability findings and build provenance for Artifact Registry images, attach custom security notes, and export SBOMs so an agent can gate deployments on supply-chain risk.

Use for: I need to list all vulnerabilities for a specific container image, Get the SBOM for an image in Artifact Registry, Find all critical CVEs across our project's images, Create a custom attestation note for a signed build

Not supported: Does not run vulnerability scans, store images, or enforce deploy policy — use only to query and author finding metadata stored as notes and occurrences.

Google Container Analysis API stores and serves vulnerability, build, deployment, and SBOM metadata produced by Artifact Registry scanning, Advanced Vulnerability Insights, and other producers. It exposes notes (the metadata definitions, e.g. a CVE) and occurrences (instances of those notes against a specific resource URL such as a container image). Consumers can list occurrences for an image, attach custom notes, manage IAM on notes, and trigger an SBOM export for a scanned artifact. It is the metadata backbone for image-supply-chain security on Google Cloud.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Container Analysis API to your agent

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

List vulnerability and other occurrences for a specific container image URL

Create custom notes describing vulnerabilities, attestations, or build provenance

Attach occurrences linking a note to a specific image or other resource

Manage IAM policies on notes to control who can author findings

Trigger an SBOM export for a scanned image stored in Artifact Registry

Aggregate occurrence summaries across all images in a project

Filter findings by severity, CVE ID, or fixable status

Use Cases

Patterns agents use Container Analysis API for, with concrete tasks.

★ Deployment Gate on Critical Vulnerabilities

A CI/CD pipeline calls Container Analysis after each Artifact Registry push to list occurrences of vulnerability notes against the new image. If any CRITICAL severity finding is unfixed, the pipeline aborts the deploy. The Container Analysis API surfaces the full occurrence list including CVE IDs, fixed package versions, and effective severity.

List occurrences for resourceUrl 'https://us-docker.pkg.dev/proj/repo/api@sha256:abc' and return any with severity CRITICAL and fixAvailable false.

SBOM Export for Compliance

A regulated team needs an SPDX or CycloneDX SBOM for every production image. Container Analysis exposes exportSBOM, which writes the artifact's component graph to Cloud Storage. Compliance auditors download SBOMs from a known bucket without needing to install scanning tooling.

Trigger exportSBOM for the image 'https://us-docker.pkg.dev/proj/repo/web@sha256:def' and return the resulting Cloud Storage URI.

Custom Attestation Authoring

A security team writes attestations (signed assertions about a build) as Container Analysis notes and links them to images via occurrences. Binary Authorization at deploy time references those attestations to enforce that only trusted builds run on GKE. The API exposes notes.create, occurrences.create, and IAM management to gatekeep authoring.

Create a note of kind ATTESTATION named 'prod-signoff', attach an occurrence linking it to image digest sha256:abc, and set its IAM policy to restrict writes to securityteam@example.com.

Cross-Project Vulnerability Dashboard

A security analytics dashboard pulls occurrence summaries from Container Analysis across every project to plot fixable critical CVEs by team. The API's filtered occurrence list, combined with note metadata, gives the dashboard severity, CVSS, and remediation hints without scraping logs.

List all occurrences in project 'shared-security' filtered to vulnerability kind and severity CRITICAL, and group results by image repository.

Key Endpoints

16 endpoints — google container analysis api stores and serves vulnerability, build, deployment, and sbom metadata produced by artifact registry scanning, advanced vulnerability insights, and other producers.

METHOD

PATH

DESCRIPTION

GET

/v1/{+name}/occurrences

List occurrences in a project

GET

/v1/{+name}/notes

List notes in a project

POST

/v1/{+name}:exportSBOM

Export the SBOM for a scanned image

GET

/v1/{+name}

Get a specific note or occurrence

GET

/v1/{+name}/occurrences

List occurrences in a project

GET

/v1/{+name}/notes

List notes in a project

POST

/v1/{+name}:exportSBOM

Export the SBOM for a scanned image

GET

/v1/{+name}

Get a specific note or occurrence

Why Jentic?

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

Credential management

Credential isolation

Google service account credentials are stored encrypted in the Jentic vault. Agents call containeranalysis.googleapis.com using short-lived OAuth access tokens with the cloud-platform scope, never raw JSON keys.

Intent-based discovery

Intent-based discovery

Agents search Jentic for 'list vulnerabilities for container image' and Jentic returns the occurrences.list operation with its filter syntax and resourceUrl format documented in the schema.

Time to first call

Time to first call

Direct integration: 1-2 days to handle OAuth, occurrence filter syntax, and SBOM export polling. Through Jentic: under 30 minutes by composing search, load, and execute on occurrences and notes.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Artifact Registry API

→

Stores the images that Container Analysis scans and indexes

Use Artifact Registry to manage image repositories; use Container Analysis to retrieve their security metadata

Complementary

Binary Authorization API

→

Enforces deploy-time policy using attestation notes stored in Container Analysis

Use Binary Authorization to gate GKE deploys on the attestations Container Analysis stores

Complementary

Kubernetes Engine API

→

Runs the workloads whose images Container Analysis evaluates

Pair with GKE when an agent wants to assess the security posture of currently running images

FAQs

Specific to using Container Analysis API through Jentic.

What authentication does the Container Analysis API use?

The Container Analysis API uses Google OAuth 2.0 with the cloud-platform scope. Through Jentic the service account credentials are stored encrypted in the Jentic vault, and agents receive scoped access tokens minted per request.

Can I list vulnerabilities for a single container image with the Container Analysis API?

Yes. Call occurrences.list with a filter on resourceUrl matching your image's full digest URL and on kind=VULNERABILITY. Each returned occurrence contains the linked note (CVE), severity, package, fix version when available, and effective severity.

What are the rate limits for the Container Analysis API?

Container Analysis applies per-project read and write quotas, with stricter limits on exportSBOM because it triggers a long-running operation. Inspect the Cloud Console Quotas page for the precise per-method limits in your project.

How do I export an SBOM for a deployed image through Jentic?

Run pip install jentic, search Jentic for 'export sbom for container image', load the schema for the exportSBOM operation on containeranalysis.googleapis.com, and execute it with the image's full resource URL.

Does the Container Analysis API perform the vulnerability scanning itself?

No. Scans are produced by Artifact Registry and Advanced Vulnerability Insights and written into Container Analysis as occurrences. This API stores, filters, and serves those findings; it does not execute the scanners.

GET STARTED

Start building with Container Analysis API

Explore with Jentic
View OpenAPI Document