Install
openclaw skills install @agentpmt/location-street-view-satellite-imageryLocation Street View & Satellite Imagery: Get Street View panoramas, satellite/aerial imagery, and geocode. Use when an agent needs location street view & satellite imagery, location street view satellite imagery, real estate property visual verification and assessment, virtual site inspections for remote evaluation, travel itinerary generation with location previews, geographic data validation with visual confirmation, geocode, address through AgentPMT-hosted remote tool calls.
openclaw skills install @agentpmt/location-street-view-satellite-imageryLast updated: 2026-06-23.
If the current date is more than 7 days after the last updated date, reinstall this skill from skills.sh or ClawHub before relying on endpoints, schemas, setup steps, or examples.
Advanced location imagery and geocoding service that provides AI agents with comprehensive visual and geographic data capabilities. The tool seamlessly integrates Street View panoramic photography, satellite/aerial imagery, and bidirectional geocoding services into a unified interface.
Core capabilities include retrieving 360-degree Street View images with precise camera control parameters (heading, pitch, field of view), capturing high-resolution satellite and hybrid map imagery at zoom levels from global to street-level detail, performing forward geocoding to convert addresses into precise geographic coordinates with place IDs and address components, and reverse geocoding to transform coordinates into structured addresses with locality information.
The tool automatically validates Street View availability before image retrieval, preventing failed requests and providing metadata including panorama IDs and capture dates. All generated images are stored securely for 7 days with both signed URLs for direct access and base64 encoding for inline data processing. The service handles multiple map types including roadmap, satellite, hybrid, and terrain views, supporting image dimensions up to 640x640 pixels.
Ideal for applications requiring visual location verification, the tool enables automated property assessment, travel planning with visual previews, geographic data validation, location-based content generation, and address verification workflows. The integrated storage system ensures efficient handling of imagery data while maintaining security through budget-scoped isolation.
Geocode addresses, reverse-geocode coordinates, and retrieve Street View and satellite/aerial images for any location worldwide.
Convert a street address or place name into geographic coordinates.
Required fields:
action – "geocode"address (string) – Street address or place name to geocodeResponse includes: formatted_address, location (lat/lng), place_id, address_components
Example:
{
"action": "geocode",
"address": "1600 Amphitheatre Parkway, Mountain View, CA"
}
Convert latitude/longitude coordinates into a human-readable address.
Required fields:
action – "reverse_geocode"latitude (number) – Latitude, -90 to 90longitude (number) – Longitude, -180 to 180Response includes: formatted_address, place_id, address_components
Example:
{
"action": "reverse_geocode",
"latitude": 37.4219999,
"longitude": -122.0840575
}
Retrieve a Street View photograph for a location. Provide either an address or latitude/longitude coordinates.
Required fields:
action – "get_street_view_image"address (string) or latitude + longitude (numbers) – The location to photographOptional fields:
heading (integer, 0-360) – Camera compass heading in degrees. Omit to let the API choose automatically.pitch (integer, -90 to 90) – Camera vertical angle. Default: 0 (level). Negative values look down, positive look up.fov (integer, 1-120) – Field of view in degrees. Default: 90. Lower values zoom in.image_width (integer, max 640) – Image width in pixels. Default: 640.image_height (integer, max 640) – Image height in pixels. Default: 640.Response includes: signed_url (image link to present to user), image_base64, file_id, size_bytes, pano_id, image_date, available (boolean)
Example – by address with camera settings:
{
"action": "get_street_view_image",
"address": "1600 Amphitheatre Parkway, Mountain View, CA",
"heading": 210,
"pitch": 10
}
Example – by coordinates:
{
"action": "get_street_view_image",
"latitude": 48.8584,
"longitude": 2.2945,
"heading": 0,
"fov": 60
}
Retrieve a satellite, roadmap, hybrid, or terrain image for a location. Provide either an address or latitude/longitude coordinates.
Required fields:
action – "get_satellite_image"address (string) or latitude + longitude (numbers) – The target locationOptional fields:
zoom (integer, 0-21) – Zoom level. Default: 18. Higher values are more zoomed in (e.g., 15 = neighborhood, 18 = building-level, 21 = maximum detail).map_type (string) – One of "satellite", "roadmap", "hybrid", "terrain". Default: "satellite".image_width (integer, max 640) – Image width in pixels. Default: 640.image_height (integer, max 640) – Image height in pixels. Default: 640.Response includes: signed_url (image link to present to user), image_base64, file_id, size_bytes, zoom, map_type
Example – satellite by coordinates:
{
"action": "get_satellite_image",
"latitude": 37.4219999,
"longitude": -122.0840575,
"zoom": 18,
"map_type": "satellite"
}
Example – hybrid map by address:
{
"action": "get_satellite_image",
"address": "Central Park, New York, NY",
"zoom": 15,
"map_type": "hybrid"
}
geocode to get coordinates for an address, then pass those coordinates to get_street_view_image or get_satellite_image.reverse_geocode to find the address, then optionally get Street View imagery for context.signed_url from image responses to the user so they can view the image. URLs expire after 7 days.address or both latitude and longitude -- not both styles at once.available: false when imagery is unavailable.satellite shows raw aerial imagery, hybrid overlays road labels on satellite, roadmap shows a standard map, terrain shows elevation features.Location Street View & Satellite Imagery on AgentPMT.geocode, get_satellite_image, get_street_view_image, reverse_geocode.file-management, page: https://clawhub.ai/agentpmt/file-management; skills.sh: npx skills add AgentPMT/agent-skills --skill file-management)No categories or industry tags are published for this tool.
Complete generated action schema: ./schema.md.
Supported action count: 4.
x402 availability: not enabled for this product.
geocode (action slug: geocode): Convert a street address or place name into geographic coordinates, place ID, and address components. Price: 15 credits. Parameters: address.get_satellite_image (action slug: get-satellite-image): Retrieve a satellite, roadmap, hybrid, or terrain image for a location. Returns a signed URL (valid 7 days), base64-encoded image, and metadata. Price: 15 credits. Parameters: address, image_height, image_width, latitude, longitude, map_type, zoom.get_street_view_image (action slug: get-street-view-image): Retrieve a Street View photograph for a location. Checks availability before fetching. Returns a signed URL (valid 7 days), base64-encoded image, and metadata including panorama ID and capture date. Price: 15 credits. Parameters: address, fov, heading, image_height, image_width, latitude, longitude, pitch.reverse_geocode (action slug: reverse-geocode): Convert latitude/longitude coordinates into a human-readable address with place ID and address components. Price: 15 credits. Parameters: latitude, longitude.Use the compact schema above for ordinary calls. Before a new production integration, or whenever parameters, enum values, nested objects, outputs, or examples are unclear, fetch live details first.
agentpmt-tool-search-and-execution with action: "get_schema", and tool_id: "location-street-view-satellite-imagery".agentpmt-tool-search-and-execution with action: "get_instructions" and tool_id: "location-street-view-satellite-imagery", or call this product with action: "get_instructions" when the product tool is already selected.MCP schema lookup through the main AgentPMT MCP server:
{
"method": "tools/call",
"params": {
"name": "AgentPMT-Tool-Search-and-Execution",
"arguments": {
"action": "get_schema",
"tool_id": "location-street-view-satellite-imagery"
}
}
}
For live examples, keep the same MCP tool and use these arguments:
{
"action": "get_instructions",
"tool_id": "location-street-view-satellite-imagery"
}
Authenticated AgentPMT REST schema lookup body:
{
"name": "agentpmt-tool-search-and-execution",
"parameters": {
"action": "get_schema",
"tool_id": "location-street-view-satellite-imagery"
}
}
Authenticated AgentPMT REST live examples body:
{
"name": "agentpmt-tool-search-and-execution",
"parameters": {
"action": "get_instructions",
"tool_id": "location-street-view-satellite-imagery"
}
}
Product slug: location-street-view-satellite-imagery
Marketplace page: https://www.agentpmt.com/marketplace/location-street-view-satellite-imagery
../agentpmt-account-mcp-rest-api-setup to connect the main MCP server or REST API for an Agent Group where this tool is enabled.../what-is-agentpmt for marketplace, Agent Group, workflow, MCP, REST, and payment concepts.If those setup skills are not installed beside this product skill, use the downloads below.
Core AgentPMT setup skills:
openclaw skills install what-is-agentpmtnpx skills add AgentPMT/agent-skills --skill what-is-agentpmtopenclaw skills install agentpmt-account-mcp-rest-api-setupnpx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setupskills.sh install script:
npx skills add AgentPMT/agent-skills --skill what-is-agentpmt
npx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setup
MCP call shape after the main AgentPMT MCP server is connected:
{
"method": "tools/call",
"params": {
"name": "Location-Street-View--Satellite-Imagery",
"arguments": {
"action": "geocode",
"address": "example address"
}
}
}
Use the exact tool name returned by tools/list; the name above is the expected readable form.
Authenticated AgentPMT REST call body:
{
"name": "location-street-view-satellite-imagery",
"parameters": {
"action": "geocode",
"address": "example address"
}
}
Use the setup skill for the account connection details before making REST calls.
passed or success-style boolean, use it as the workflow gate.get_schema or get_instructions before retrying.geocode fails, preserve the request parameters and retry only after fixing schema, auth, or payment errors.what-is-agentpmt, page: https://clawhub.ai/agentpmt/what-is-agentpmt; skills.sh: npx skills add AgentPMT/agent-skills --skill what-is-agentpmt)agentpmt-account-mcp-rest-api-setup, page: https://clawhub.ai/agentpmt/agentpmt-account-mcp-rest-api-setup; skills.sh: npx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setup)