Pricing Docs About
Get Started
Ready to start creating map animations? Get Started Free →

Georender API Documentation

A REST API that converts geographic coordinates into cinematic MP4 map animations. Send coordinates, receive broadcast-quality animated map videos.

Base URL: https://api.georender.io/v1

What is Georender?

Georender is an API-first map animation platform designed for content creators, newsrooms, and developers. Instead of spending hours in After Effects or hiring motion designers, you send an API request with waypoints and receive a polished, broadcast-quality video in under 90 seconds.

Key Features

Quick Example

Here's the simplest possible API request:

POST /v1/render
Authorization: Bearer gr_live_xxxxxxxxxxxx
Content-Type: application/json

{
  "waypoints": [
    { "lat": 29.9792, "lng": 32.5731, "label": "Suez Canal" },
    { "lat": 12.3567, "lng": 43.6028, "label": "Bab el-Mandeb" }
  ]
}

Response:

{
  "job_id": "job_8f3k2m9x",
  "status": "queued",
  "estimated_duration_seconds": 36,
  "status_url": "https://api.georender.io/v1/status/job_8f3k2m9x"
}

Getting Started

  1. Quick Start Guide - Create your first render in 5 minutes
  2. Authentication - Get your API key and start making requests
  3. Render Modes - Learn about the 4 different animation types

Use Cases

Georender is built for:

API Versioning

All endpoints are versioned using URL path prefixes. The current version is v1.

https://api.georender.io/v1/render
https://api.georender.io/v1/status/{job_id}
https://api.georender.io/v1/styles
Deprecated: Endpoints without the /v1 prefix still work but will be removed on 2026-09-01.