# Google Aerial View Lookup Video

> Google Aerial View Lookup Video is a paid API for AI agents from stable-enrich-git-stableenrich-solar-aerial-merit-systems.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Retrieves a previously rendered Google Aerial View flyover video by address or videoId

## Facts

- Endpoint: GET https://stable-enrich-git-stableenrich-solar-aerial-merit-systems.vercel.app/api/google-maps/aerial-view/lookup-video
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/google-aerial-view-lookup-video-6f7b08a1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XQZOjkAvrMwOm9E6FeKzi

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability google-aerial-view-lookup-video-6f7b08a1
```

Example prompt: Can you look up the Google Aerial View flyover video for 1600 Amphitheatre Parkway, Mountain View, CA — I think there's already a rendered video for it?

## When to prefer this

Use this endpoint when you already know a flyover video has been previously rendered (or may exist) for a given address or videoId, and you want to retrieve it without triggering a new render. Prefer this over a render endpoint when you want to avoid redundant generation costs or check render status.

## Known failure modes

- Video not found for address or videoId — video may not have been previously rendered
- Missing required query param — must provide either address or videoId
- Address not recognized by Google Maps — returns error
- Rate limit or payment failure — 402 payment required
- Video still rendering — state returned as pending

## How this service works

Google Aerial View - Look up a previously rendered flyover video by address or videoId

## Output

Returns the aerial flyover video metadata for the requested address or videoId, including the video URL, rendering state, and associated videoId. If the video was previously rendered, the agent can access or display it directly.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "address": "1600 Amphitheatre Parkway, Mountain View, CA"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "properties": {
      "address": {
       "type": "string",
       "minLength": 1
      },
      "videoId": {
       "type": "string",
       "minLength": 1
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/google-aerial-view-lookup-video-6f7b08a1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stable-enrich-git-stableenrich-solar-aerial-merit-systems.vercel.app](https://www.zero.xyz/host/stable-enrich-git-stableenrich-solar-aerial-merit-systems.vercel.app/llms.txt)
