Render aerial view videos of locations via Google Maps Platform over MPP.
What it does
This endpoint is part of the Google Maps Platform suite hosted on the Tempo MPP gateway at googlemaps.mpp.tempo.xyz. It wraps the Google Maps Aerial View API's renderVideo method, which generates short aerial flyover videos for a given geographic location. The underlying Google API accepts an address or coordinates and returns a rendered video (or a reference to one) showing a 3D aerial perspective of the area.
The endpoint is exposed via the Micropayment Protocol (MPP) on Tempo, meaning callers would normally pay per request using pathUSD settled on the Tempo L2 network. However, during probing the endpoint returned 404 on both HEAD and GET requests, and all crawled pages on the origin domain also returned "Not Found." This strongly suggests the endpoint is currently offline, misconfigured, or has been removed from the gateway.
Because no documentation, schema, pricing information, or live 402 challenge was captured, nearly all details about request format, pricing, and response structure are inferred from the endpoint path and the known Google Maps Aerial View API. Users should verify availability before attempting integration.
Capabilities
Use cases
- —Generating aerial flyover videos for real estate listings
- —Embedding 3D location previews in travel or tourism applications
- —Creating visual context for geographic reports or presentations
Fit
Best for
- —Real estate platforms needing aerial property views
- —Travel and tourism apps wanting location flyover videos
- —Geographic visualization tools
Not for
- —Real-time live aerial surveillance or drone feeds
- —Street-level imagery or Street View panoramas
- —Bulk offline map tile downloads
Quick start
# Endpoint appears offline (404). When live, a typical MPP call would be:
curl -X POST https://googlemaps.mpp.tempo.xyz/aerialview/v1/videos:renderVideo \
-H 'Content-Type: application/json' \
-d '{"address": "1600 Amphitheatre Parkway, Mountain View, CA"}'Example
Request
{
"address": "1600 Amphitheatre Parkway, Mountain View, CA"
}Endpoint
Quality
The endpoint returned 404 on all probe methods and every crawled page on the origin returned Not Found. No schema, pricing, documentation, or live 402 challenge was captured. All details are inferred from the URL path and known Google Maps API conventions.
Warnings
- —Endpoint returned 404 on both HEAD and GET — it does not appear to be live.
- —All pages on the origin domain (root, /docs, /api, /pricing, /README) return Not Found.
- —No MPP 402 challenge was captured, so pricing and settlement details are unknown.
- —No OpenAPI schema or documentation is available; request/response formats are inferred.
- —Example request is speculative based on the Google Maps Aerial View API naming conventions.