Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

API 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 WorksAPI 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 / Accelerated Mobile Pages (AMP) URL API
Accelerated Mobile Pages (AMP) URL API logo

Google Accelerated Mobile Pages (AMP) URL API

Browse all Google APIs
✓ Official Vendor SpecDeveloper ToolsMonitoring Observabilitynone1 EndpointsREST

For Agents

Resolve canonical URLs to their AMP and AMP Cache equivalents in one batch call, so an agent can route mobile traffic to the lighter AMP version where available.

Use for: Find the AMP version of a list of news article URLs, Get the AMP Cache URL for a canonical blog post URL, Resolve 50 canonical URLs to AMP URLs in one call, Check whether an AMP version exists for a given web page

Not supported: Does not validate AMP markup, render AMP pages, or report AMP indexing errors — use for resolving canonical URLs to AMP equivalents only.

The Accelerated Mobile Pages (AMP) URL API resolves a batch of canonical web URLs into their AMP equivalents and the corresponding Google AMP Cache URLs. It returns the AMP variant for each input URL when one is published or an explanatory error when no AMP version exists. Search teams and content distributors use it to programmatically pre-fetch or display AMP pages from a list of canonical URLs.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Accelerated Mobile Pages (AMP) URL API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Accelerated Mobile Pages (AMP) URL 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 Accelerated Mobile Pages (AMP) URL API.

Resolve a batch of up to 50 canonical URLs into their AMP equivalents in a single request

Return the Google AMP Cache URL alongside each AMP URL for direct CDN-served fetching

Surface a structured error per URL when no AMP version exists, separating not-found from invalid input

Pre-fetch AMP pages for top-of-funnel content to feed mobile search and discovery surfaces

Power link rewriters that swap canonical URLs for AMP URLs in mobile email and chat contexts

Use Cases

Patterns agents use Accelerated Mobile Pages (AMP) URL API for, with concrete tasks.

★ Mobile Email Link Rewriting

An email platform rewrites article links in mobile newsletters to AMP equivalents so they load faster on phones. The ampUrls.batchGet endpoint accepts up to 50 URLs per call and returns the AMP URL plus the AMP Cache URL for each match, which the platform substitutes back into the email body.

Given a list of 50 article URLs, call ampUrls.batchGet and return a map from canonical URL to AMP Cache URL, falling back to the canonical URL when no AMP version exists.

Pre-fetching for Mobile Search

A mobile search experience pre-fetches AMP pages for the top results before the user taps through. The AMP URL API resolves canonical search results into AMP and AMP Cache URLs in a single request, letting the client warm its cache from Google's CDN rather than the origin server.

Take the top 10 search result URLs, call ampUrls.batchGet, and issue HEAD requests against each returned cdnAmpUrl to warm the AMP Cache.

AI Agent Mobile Content Optimisation

An AI agent that summarises web articles for a mobile reader uses Jentic to call the AMP URL API. When an AMP version is available, the agent fetches the lighter page for faster summarisation, and falls back to the canonical URL when no AMP variant is published.

For each canonical article URL, call ampUrls.batchGet and pick the cdnAmpUrl when the response contains an ampUrl entry, otherwise keep the canonical URL.

Key Endpoints

1 endpoints — the accelerated mobile pages (amp) url api resolves a batch of canonical web urls into their amp equivalents and the corresponding google amp cache urls.

METHOD

PATH

DESCRIPTION

POST

/v1/ampUrls:batchGet

Resolve a batch of canonical URLs to AMP and AMP Cache URLs

POST

/v1/ampUrls:batchGet

Resolve a batch of canonical URLs to AMP and AMP Cache URLs

Why Jentic?

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

Credential management

Credential isolation

The Google API key is stored encrypted in the Jentic vault (MAXsystem). Agents receive scoped execution rights — the raw key is never injected into the agent's context.

Intent-based discovery

Intent-based discovery

Agents search by intent (e.g., 'find amp version of a url') and Jentic returns the ampUrls.batchGet operation with its input schema, so the agent can submit a list of URLs without reading the discovery doc.

Time to first call

Time to first call

Direct integration: a few hours to provision an API key and parse the batch response shape. Through Jentic: under 30 minutes — search, load schema, execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Google Search Console API

→

Read AMP indexing status and crawl errors for the same domains

Use Search Console alongside the AMP URL API to confirm that resolved AMP URLs are actually indexed by Google Search.

Complementary

PageSpeed Insights API

→

Measure mobile performance for canonical and AMP variants

Call PageSpeed Insights after resolving an AMP URL to compare load metrics against the canonical page.

Alternative

Custom Search API

→

Programmatic search that returns canonical URLs across the web

Use Custom Search to discover URLs in the first place, then resolve them to AMP variants with the AMP URL API.

FAQs

Specific to using Accelerated Mobile Pages (AMP) URL API through Jentic.

What authentication does the AMP URL API use?

The endpoint accepts requests with an API key passed as the key query parameter. No OAuth scope or user consent is required because the data is public. Jentic stores the API key in its encrypted vault and injects it at request time.

How many URLs can I resolve in a single call?

ampUrls.batchGet accepts up to 50 canonical URLs per request. Larger lists must be chunked client-side. The response returns one ampUrl entry per matched input and a separate urlErrors array for any URLs without an AMP equivalent.

What are the rate limits for the AMP URL API?

Google's default quota is 1,000 requests per 100 seconds per project, with a per-user limit of 100 requests per 100 seconds. Each batchGet call counts as one request regardless of how many URLs are inside it, so batching aggressively keeps quota usage low.

How do I resolve a URL to its AMP version through Jentic?

Run jentic search 'find amp version of a url', load the ampUrls.batchGet operation, and execute it with a list of canonical URLs. The agent receives a typed response with ampUrls and urlErrors arrays so it can branch on whether an AMP version was found.

Is the AMP URL API free?

Yes. The API is free under Google's standard API terms with the default project quota. There is no per-call charge.

GET STARTED

Start building with Accelerated Mobile Pages (AMP) URL API

Explore with Jentic
View OpenAPI Document