Getting Started

The Dome Tech Enterprise API lets you programmatically generate drone footage, video clips, property markups, brochure slides, and track job progress.

Base URL

https://api.dometech.com.au/v1

The same URL is used for both test and live keys.

Quick Start

1. Create a test key

Start by creating a test key from your dashboard. Test keys (dome_test_*) are free and rate-limited to 10 req/min. When you're ready for production, create a live key (dome_live_*). Both use the same API and the X-API-Key header.

2. Make your first request

List your jobs:

curl -H "X-API-Key: dome_live_your_key_here" \
  https://api.dometech.com.au/v1/jobs

3. Generate drone footage

curl -X POST \
  -H "X-API-Key: dome_live_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{"address": "123 Collins Street, Melbourne VIC 3000"}' \
  https://api.dometech.com.au/v1/drone-footage/generate

Response:

{
  "data":  {
    "job_id":  "550e8400-e29b-41d4-a716-446655440000",
    "status":  "queued"
  },
  "meta":  {
    "request_id":  "req_abc123",
    "timestamp":  "2026-02-09T10:00:00.000Z",
    "mode":  "test"
  }
}

4. Poll for results

Jobs are asynchronous. Poll the job endpoint until the status is completed:

curl -H "X-API-Key: dome_live_your_key_here" \
  https://api.dometech.com.au/v1/jobs/550e8400-e29b-41d4-a716-446655440000

Next Steps