Install
openclaw skills install @agentpmt/real-estate-aerial-video-generatorReal Estate Aerial Video Generator: Create cinematic aerial videos from street addresses, check whether a video is ready yet, and return downloadable MP4 links for completed footage. Use when an agent needs real estate aerial video generator, real estate listing videos, vacation rental marketing, neighborhood preview videos, destination marketing, fetch existing aerial video, address, video id through AgentPMT-hosted remote tool calls. Discovery terms: real estate aerial video generator.
openclaw skills install @agentpmt/real-estate-aerial-video-generatorLast updated: 2026-06-24.
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.
Turn a street address into a cinematic aerial property video you can share with buyers, clients, or stakeholders. This tool is useful for real estate listings, neighborhood previews, destination marketing, property presentations, and location-based sales materials. Completed videos are returned as downloadable MP4 links that can be handed directly to the user.
Create cinematic aerial property videos from a street address and return a downloadable MP4 when the footage is ready.
Request an aerial video for a location.
Required fields:
address (string): Full street address.Optional fields:
Example:
{
"action": "generate_aerial_video",
"address": "230 Wellington St, Traverse City, MI 49686"
}
Typical statuses:
completed: Video is ready now. Return the signed_url to the user.queued: A new request was submitted. Save the returned video_id for later checks.processing: A prior request is still being prepared.unavailable: No aerial coverage is available for that location.Retrieve a completed video or check the status of an earlier request.
Required fields:
address or video_id.Optional fields:
address (string): Street address used for the request.video_id (string): Video identifier from a prior response.Example using an address:
{
"action": "fetch_existing_aerial_video",
"address": "230 Wellington St, Traverse City, MI 49686"
}
Example using a video ID:
{
"action": "fetch_existing_aerial_video",
"video_id": "ZsqpL5f2WAQxXrtbqWq8AP"
}
Typical statuses:
completed: Response includes signed_url, file_id, size_bytes, and metadata such as videoId, captureDate, and duration.processing: Video is still being prepared.not_found: No prior video exists for that address or ID.failed: The prior request did not complete successfully.generate_aerial_video when the user asks for a new video.completed, present the signed_url directly.queued, keep the returned video_id.fetch_existing_aerial_video later with the video_id or original address.User: "Can you make an aerial video for 230 Wellington St, Traverse City, MI 49686?"
Assistant: "I’ll check whether one is already available for that address and return the download link if it is ready."
Assistant tool call:
{
"action": "fetch_existing_aerial_video",
"address": "230 Wellington St, Traverse City, MI 49686"
}
Assistant if completed: "The aerial video is ready. Here is the download link: <signed_url>"
Assistant if processing: "The video is not ready yet. I can check again later using the saved video ID."
Real Estate Aerial Video Generator on AgentPMT.fetch_existing_aerial_video, generate_aerial_video.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: 2.
x402 availability: not enabled for this product.
fetch_existing_aerial_video (action slug: fetch-existing-aerial-video): Retrieve a completed aerial video or check the status of a previous request. Provide either the original address or a prior video_id. Price: 0 credits. Parameters: address, video_id.generate_aerial_video (action slug: generate-aerial-video): Request an aerial video for a street address. If a video already exists for that address, return it immediately. Otherwise queue the request and return the current status. Price: 25 credits. Parameters: address.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: "real-estate-aerial-video-generator".agentpmt-tool-search-and-execution with action: "get_instructions" and tool_id: "real-estate-aerial-video-generator", 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": "real-estate-aerial-video-generator"
}
}
}
For live examples, keep the same MCP tool and use these arguments:
{
"action": "get_instructions",
"tool_id": "real-estate-aerial-video-generator"
}
Authenticated AgentPMT REST schema lookup body:
{
"name": "agentpmt-tool-search-and-execution",
"parameters": {
"action": "get_schema",
"tool_id": "real-estate-aerial-video-generator"
}
}
Authenticated AgentPMT REST live examples body:
{
"name": "agentpmt-tool-search-and-execution",
"parameters": {
"action": "get_instructions",
"tool_id": "real-estate-aerial-video-generator"
}
}
Product slug: real-estate-aerial-video-generator
Marketplace page: https://www.agentpmt.com/marketplace/real-estate-aerial-video-generator
../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": "Real-Estate-Aerial-Video-Generator",
"arguments": {
"action": "fetch_existing_aerial_video",
"address": "example address",
"video_id": "example video id"
}
}
}
Use the exact tool name returned by tools/list; the name above is the expected readable form.
Authenticated AgentPMT REST call body:
{
"name": "real-estate-aerial-video-generator",
"parameters": {
"action": "fetch_existing_aerial_video",
"address": "example address",
"video_id": "example video id"
}
}
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.fetch_existing_aerial_video 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)